import { z } from 'zod'; export declare const PresignedUrlInfoSchema: z.ZodObject<{ documentId: z.ZodString; uploadUrl: z.ZodURL; expiresAt: z.ZodISODateTime; s3Key: z.ZodString; }, z.core.$strip>; export type PresignedUrlInfoInput = z.input; export type PresignedUrlInfoModel = z.infer; //# sourceMappingURL=presigned-url-info.schema.d.ts.map