declare const getAllJsonFromString: (text: string) => Array<Object>;
declare const isJsonLdObject: (obj: Object) => Boolean;
declare const getAllJsonLdFromString: (text: string) => Object[];
export { getAllJsonLdFromString, isJsonLdObject, getAllJsonFromString };