import { Schema } from 'prosemirror-model'; /** * A deliberately tiny schema: one paragraph of text, hard breaks, and atomic * mentions. Nothing else, so pasted HTML sanitizes to plain text for free — * there is no mark or block the parser could keep. */ export declare const editorSchema: Schema<"text" | "doc" | "paragraph" | "hardBreak" | "mention", any>; export declare const mentionType: import("prosemirror-model").NodeType; export declare const hardBreakType: import("prosemirror-model").NodeType; export declare const paragraphType: import("prosemirror-model").NodeType; //# sourceMappingURL=schema.d.ts.map