import { z } from 'zod'; /** * Complete AnnotatedDocument entity schema as published in events. */ export declare const AnnotatedDocumentEventDataSchema: z.ZodObject<{ documentId: z.ZodString; s3Key: z.ZodString; versionId: z.ZodOptional; previewS3Key: z.ZodOptional; previewVersionId: z.ZodOptional; thumbnailS3Key: z.ZodOptional; thumbnailVersionId: z.ZodOptional; createdAt: z.ZodISODateTime; updatedAt: z.ZodISODateTime; }, z.core.$strip>; export type AnnotatedDocumentEventDataInput = z.input; export type AnnotatedDocumentEventDataModel = z.infer; //# sourceMappingURL=annotated-document-event-data.schema.d.ts.map