| 123456789101112 | /// <reference types="react" />export interface JsonLdProps {    type?: string;    scriptId?: string;    dataArray?: any[];    useAppDir?: boolean;    [key: string]: any;}declare function JsonLd({ type, keyOverride, scriptKey, scriptId, dataArray, useAppDir, ...rest }: JsonLdProps & {    scriptKey: string;}): JSX.Element;export { JsonLd };
 |