import { type SchemaToModel } from '@revesuite/store'; export type ListType = 'bulleted' | 'numbered' | 'todo' | 'toggle'; export declare const ListBlockSchema: { version: number; model: { role: "content" | "root" | "hub"; props: import("@revesuite/store").PropsGetter<{ type: ListType; text: import("@revesuite/store").Text; checked: boolean; }>; flavour: "affine:list"; } & { version: number; role: "content"; tag: import("lit/static-html.js").StaticValue; parent: string[]; }; }; export type ListBlockModel = SchemaToModel; //# sourceMappingURL=list-model.d.ts.map