import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const PatientCreateWithoutGroupsInputObjectSchema: z.ZodType; export declare const PatientCreateWithoutGroupsInputObjectZodSchema: z.ZodObject<{ 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>; createdAt: z.ZodOptional; user: z.ZodLazy>; appointments: z.ZodOptional>>; procedures: z.ZodOptional>>; claims: z.ZodOptional>>; payment: z.ZodOptional>>; communications: z.ZodOptional>>; documents: z.ZodOptional>>; }, "strict", z.ZodTypeAny, { user: Prisma.UserCreateNestedOneWithoutPatientsInput; phone: string; dateOfBirth: Date; firstName: string; lastName: string; gender: string; status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined; createdAt?: Date | undefined; procedures?: Prisma.AppointmentProcedureCreateNestedManyWithoutPatientInput | undefined; claims?: Prisma.ClaimCreateNestedManyWithoutPatientInput | undefined; email?: string | null | undefined; appointments?: Prisma.AppointmentCreateNestedManyWithoutPatientInput | undefined; payment?: Prisma.PaymentCreateNestedManyWithoutPatientInput | 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; documents?: Prisma.PatientDocumentCreateNestedManyWithoutPatientInput | undefined; communications?: Prisma.CommunicationCreateNestedManyWithoutPatientInput | undefined; }, { user: Prisma.UserCreateNestedOneWithoutPatientsInput; phone: string; dateOfBirth: Date; firstName: string; lastName: string; gender: string; status?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined; createdAt?: Date | undefined; procedures?: Prisma.AppointmentProcedureCreateNestedManyWithoutPatientInput | undefined; claims?: Prisma.ClaimCreateNestedManyWithoutPatientInput | undefined; email?: string | null | undefined; appointments?: Prisma.AppointmentCreateNestedManyWithoutPatientInput | undefined; payment?: Prisma.PaymentCreateNestedManyWithoutPatientInput | 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; documents?: Prisma.PatientDocumentCreateNestedManyWithoutPatientInput | undefined; communications?: Prisma.CommunicationCreateNestedManyWithoutPatientInput | undefined; }>; //# sourceMappingURL=PatientCreateWithoutGroupsInput.schema.d.ts.map