import { type SchemaToModel } from '@revesuite/store'; export type ParagraphType = 'text' | 'quote' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; export declare const ParagraphBlockSchema: { version: number; model: { role: "content" | "root" | "hub"; props: import("@revesuite/store").PropsGetter<{ type: ParagraphType; text: import("@revesuite/store").Text; }>; flavour: "affine:paragraph"; } & { version: number; role: "content"; tag: import("lit/static-html.js").StaticValue; parent: string[]; }; }; export type ParagraphBlockModel = SchemaToModel; //# sourceMappingURL=paragraph-model.d.ts.map