import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const NotificationCreateInputObjectSchema: z.ZodType; export declare const NotificationCreateInputObjectZodSchema: z.ZodObject<{ type: z.ZodEnum<["BACKUP", "CLAIM", "PAYMENT", "ETC"]>; message: z.ZodString; createdAt: z.ZodOptional; read: z.ZodOptional; user: z.ZodLazy>; }, "strict", z.ZodTypeAny, { message: string; type: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC"; user: Prisma.UserCreateNestedOneWithoutNotificationsInput; createdAt?: Date | undefined; read?: boolean | undefined; }, { message: string; type: "BACKUP" | "CLAIM" | "PAYMENT" | "ETC"; user: Prisma.UserCreateNestedOneWithoutNotificationsInput; createdAt?: Date | undefined; read?: boolean | undefined; }>; //# sourceMappingURL=NotificationCreateInput.schema.d.ts.map