import { z } from 'zod'; export declare const CreateDocumentSchema: z.ZodObject<{ documentId: z.ZodString; fileName: z.ZodString; s3Key: z.ZodString; metadata: z.ZodOptional; }, z.core.$strip>; export type CreateDocumentInput = z.input; export type CreateDocumentDto = z.infer; //# sourceMappingURL=create-document.schema.d.ts.map