import { z } from 'zod'; export declare const DocumentSummarySchema: z.ZodObject<{ documentId: z.ZodString; fileName: z.ZodString; createdAt: z.ZodISODateTime; updatedAt: z.ZodISODateTime; }, z.core.$strip>; export type DocumentSummaryInput = z.input; export type DocumentSummaryModel = z.infer; //# sourceMappingURL=document-summary.schema.d.ts.map