import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const PatientCreateManyInputObjectSchema: z.ZodType; export declare const PatientCreateManyInputObjectZodSchema: z.ZodObject<{ id: z.ZodOptional; firstName: z.ZodString; lastName: z.ZodString; dateOfBirth: z.ZodDate; gender: z.ZodString; phone: z.ZodString; email: z.ZodNullable>; address: z.ZodNullable>; city: z.ZodNullable>; zipCode: z.ZodNullable>; insuranceProvider: z.ZodNullable>; insuranceId: z.ZodNullable>; groupNumber: z.ZodNullable>; policyHolder: z.ZodNullable>; allergies: z.ZodNullable>; medicalConditions: z.ZodNullable>; status: z.ZodOptional>; userId: z.ZodNumber; createdAt: z.ZodOptional; }, "strict", z.ZodTypeAny, { userId: number; phone: string; dateOfBirth: Date; firstName: string; lastName: string; gender: string; status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined; createdAt?: Date | undefined; id?: number | undefined; email?: string | null | undefined; insuranceProvider?: string | null | undefined; address?: string | null | undefined; city?: string | null | undefined; zipCode?: string | null | undefined; insuranceId?: string | null | undefined; groupNumber?: string | null | undefined; policyHolder?: string | null | undefined; allergies?: string | null | undefined; medicalConditions?: string | null | undefined; }, { userId: number; phone: string; dateOfBirth: Date; firstName: string; lastName: string; gender: string; status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined; createdAt?: Date | undefined; id?: number | undefined; email?: string | null | undefined; insuranceProvider?: string | null | undefined; address?: string | null | undefined; city?: string | null | undefined; zipCode?: string | null | undefined; insuranceId?: string | null | undefined; groupNumber?: string | null | undefined; policyHolder?: string | null | undefined; allergies?: string | null | undefined; medicalConditions?: string | null | undefined; }>; //# sourceMappingURL=PatientCreateManyInput.schema.d.ts.map