interface ThingBase {
    "@type": string;
    [s: string]: Thing | null | undefined | Thing[];
}
export declare type Thing = ThingBase | string;
export {};
