import { type SchemaToModel } from '@revesuite/store'; type MetaData = { title?: string; description?: string; icon?: string; image?: string; [x: string]: string | string[] | undefined | boolean; }; export type BookmarkProps = { url: string; caption?: string; crawled?: boolean; } & MetaData; export declare const defaultBookmarkProps: BookmarkProps; export declare const BookmarkBlockSchema: { version: number; model: { role: "content" | "root" | "hub"; props: import("@revesuite/store").PropsGetter; flavour: "affine:bookmark"; } & { version: number; role: "content"; tag: import("lit/static-html.js").StaticValue; parent: string[]; }; }; export type BookmarkBlockModel = SchemaToModel; export {}; //# sourceMappingURL=bookmark-model.d.ts.map