import type { GfxModel } from '@blocksuite/std/gfx'; import { z } from 'zod'; import type { BrushElementModel, ConnectorElementModel, GroupElementModel } from '../elements'; export type EmbedCardStyle = 'horizontal' | 'horizontalThin' | 'list' | 'vertical' | 'cube' | 'cubeThick' | 'video' | 'figma' | 'html' | 'syncedDoc' | 'pdf' | 'citation'; export declare const LinkPreviewDataSchema: z.ZodObject<{ description: z.ZodNullable; icon: z.ZodNullable; image: z.ZodNullable; title: z.ZodNullable; }, "strip", z.ZodTypeAny, { title: string | null; description: string | null; icon: string | null; image: string | null; }, { title: string | null; description: string | null; icon: string | null; image: string | null; }>; export type LinkPreviewData = z.infer; export type Connectable = Exclude; export type BlockMeta = { 'meta:createdAt'?: number; 'meta:createdBy'?: string; 'meta:updatedAt'?: number; 'meta:updatedBy'?: string; }; //# sourceMappingURL=types.d.ts.map