import { z } from 'zod'; export declare const LinkDocumentSchema: z.ZodObject<{ label: z.ZodOptional; workflowId: z.ZodOptional; embed: z.ZodOptional; expanded: z.ZodOptional; }, z.core.$strict>; export type LinkDocumentContent = z.infer; export declare class LinkDocument { label?: string; workflowId?: string; embed?: boolean; expanded?: boolean; } //# sourceMappingURL=link-document.d.ts.map