import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const CloudFileCreateInputObjectSchema: z.ZodType; export declare const CloudFileCreateInputObjectZodSchema: z.ZodObject<{ name: z.ZodString; mimeType: z.ZodNullable>; fileSize: z.ZodBigInt; isComplete: z.ZodOptional; totalChunks: z.ZodNullable>; createdAt: z.ZodOptional; user: z.ZodLazy>; folder: z.ZodOptional>>; chunks: z.ZodOptional>>; }, "strict", z.ZodTypeAny, { user: Prisma.UserCreateNestedOneWithoutCloudFilesInput; name: string; fileSize: bigint; createdAt?: Date | undefined; mimeType?: string | null | undefined; isComplete?: boolean | undefined; totalChunks?: number | null | undefined; chunks?: Prisma.CloudFileChunkCreateNestedManyWithoutFileInput | undefined; folder?: Prisma.CloudFolderCreateNestedOneWithoutFilesInput | undefined; }, { user: Prisma.UserCreateNestedOneWithoutCloudFilesInput; name: string; fileSize: bigint; createdAt?: Date | undefined; mimeType?: string | null | undefined; isComplete?: boolean | undefined; totalChunks?: number | null | undefined; chunks?: Prisma.CloudFileChunkCreateNestedManyWithoutFileInput | undefined; folder?: Prisma.CloudFolderCreateNestedOneWithoutFilesInput | undefined; }>; //# sourceMappingURL=CloudFileCreateInput.schema.d.ts.map