import { z } from 'zod'; import { DocumentStatus } from '../enums/document-status.enum.js'; /** * Complete Document entity schema as published in events. */ export declare const DocumentEventDataSchema: z.ZodObject<{ documentId: z.ZodString; fileName: z.ZodString; s3Key: z.ZodString; versionId: z.ZodOptional; previewS3Key: z.ZodOptional; previewVersionId: z.ZodOptional; thumbnailS3Key: z.ZodOptional; thumbnailVersionId: z.ZodOptional; status: z.ZodEnum; createdAt: z.ZodISODateTime; updatedAt: z.ZodISODateTime; metadata: z.ZodOptional>; }, z.core.$strip>; export type DocumentEventDataInput = z.input; export type DocumentEventDataModel = z.infer; //# sourceMappingURL=document-event-data.schema.d.ts.map