import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const CloudFolderCreateInputObjectSchema: z.ZodType; export declare const CloudFolderCreateInputObjectZodSchema: z.ZodObject<{ name: z.ZodString; createdAt: z.ZodOptional; parent: z.ZodOptional>>; children: z.ZodOptional>>; user: z.ZodLazy>; files: z.ZodOptional>>; }, "strict", z.ZodTypeAny, { user: Prisma.UserCreateNestedOneWithoutCloudFoldersInput; name: string; createdAt?: Date | undefined; children?: Prisma.CloudFolderCreateNestedManyWithoutParentInput | undefined; files?: Prisma.CloudFileCreateNestedManyWithoutFolderInput | undefined; parent?: Prisma.CloudFolderCreateNestedOneWithoutChildrenInput | undefined; }, { user: Prisma.UserCreateNestedOneWithoutCloudFoldersInput; name: string; createdAt?: Date | undefined; children?: Prisma.CloudFolderCreateNestedManyWithoutParentInput | undefined; files?: Prisma.CloudFileCreateNestedManyWithoutFolderInput | undefined; parent?: Prisma.CloudFolderCreateNestedOneWithoutChildrenInput | undefined; }>; //# sourceMappingURL=CloudFolderCreateInput.schema.d.ts.map