/** * Reference to a Content Item */ export interface ContentLinkInstance { id: string; contentType: string; } export interface ContentLinkModel { _meta?: { schema?: string; [key: string]: any; }; [key: string]: any; } /** * Utility to assist parsing the body of a content item */ export declare class ContentLink { static readonly SCHEMA = "http://bigcontent.io/cms/schema/v1/core#/definitions/content-link"; /** * Detects if the provided JSON node is a content link * @param json JSON node to test * @returns boolean true if the json node is a content link, otherwise false */ static isContentLink(json: ContentLinkModel): boolean; }