import React from 'react'; import { Thing } from 'schema-dts'; interface StructuredDataProps { /** A json-ld representation of the Thing you would like to embed. * See: @url https://schema.org/Thing#subtypes */ json: Thing; } export declare const StructuredData: React.FC; export {};