import { z } from "zod"; export declare const S3StorageConfig: z.ZodObject<{ bucket: z.ZodString; region: z.ZodString; accessKeyId: z.ZodString; secretAccessKey: z.ZodString; endpoint: z.ZodString; tmpPath: z.ZodString; enableVersioning: z.ZodOptional; }, "strip", z.ZodTypeAny, { tmpPath: string; bucket: string; region: string; accessKeyId: string; secretAccessKey: string; endpoint: string; enableVersioning?: boolean | undefined; }, { tmpPath: string; bucket: string; region: string; accessKeyId: string; secretAccessKey: string; endpoint: string; enableVersioning?: boolean | undefined; }>; export type S3StorageConfig = z.infer; //# sourceMappingURL=S3StorageConfig.d.ts.map