import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const AppointmentUncheckedCreateWithoutProceduresInputObjectSchema: z.ZodType; export declare const AppointmentUncheckedCreateWithoutProceduresInputObjectZodSchema: z.ZodObject<{ id: z.ZodOptional; patientId: z.ZodNumber; userId: z.ZodNumber; staffId: z.ZodNumber; title: z.ZodString; date: z.ZodDate; startTime: z.ZodString; endTime: z.ZodString; type: z.ZodString; notes: z.ZodNullable>; procedureCodeNotes: z.ZodNullable>; status: z.ZodOptional; createdAt: z.ZodOptional; eligibilityStatus: z.ZodOptional>; claims: z.ZodOptional>>; }, "strict", z.ZodTypeAny, { type: string; userId: number; date: Date; title: string; patientId: number; startTime: string; endTime: string; staffId: number; status?: string | undefined; createdAt?: Date | undefined; id?: number | undefined; notes?: string | null | undefined; procedureCodeNotes?: string | null | undefined; eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined; claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutAppointmentInput | undefined; }, { type: string; userId: number; date: Date; title: string; patientId: number; startTime: string; endTime: string; staffId: number; status?: string | undefined; createdAt?: Date | undefined; id?: number | undefined; notes?: string | null | undefined; procedureCodeNotes?: string | null | undefined; eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined; claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutAppointmentInput | undefined; }>; //# sourceMappingURL=AppointmentUncheckedCreateWithoutProceduresInput.schema.d.ts.map