import { Thing } from "./Thing";
export declare type JsonLd<T extends Thing> = T & {
    "@context": "http://schema.org";
    "@type": string | string[];
};
