/** * Canonical representation of a knowledge base document's stored content. * * HTML is the legacy default; documents created before this field existed are * interpreted as HTML. */ export declare const ContentFormat: { readonly Html: "html"; readonly Markdown: "markdown"; }; export type ContentFormat = (typeof ContentFormat)[keyof typeof ContentFormat];