/** * @hidden * Class providing meta data about a fragment of content with helper functions. */ export declare class FragmentMeta { /** * URI of the JSON-schema used to create this fragment of content */ schema: string; /** * Name */ name?: string; /** * Creates a new FragmentMeta instance. * @param data JSON representation of the FragmentMeta model */ constructor(data?: any); /** * Export to JSON */ toJSON(): any; /** * @hidden * Returns true if the provided node contains meta data to self-describe the JSON schema it was created against. * @param node JSON node to test */ static isFragment(node: any): boolean; }