import * as z from 'zod'; export declare const AppointmentProcedureInputSchema: z.ZodObject<{ id: z.ZodNumber; appointmentId: z.ZodNumber; patientId: z.ZodNumber; procedureCode: z.ZodString; procedureLabel: z.ZodNullable>; fee: z.ZodNullable>; category: z.ZodNullable>; toothNumber: z.ZodNullable>; toothSurface: z.ZodNullable>; oralCavityArea: z.ZodNullable>; source: z.ZodEnum<["COMBO", "MANUAL"]>; comboKey: z.ZodNullable>; createdAt: z.ZodDate; appointment: z.ZodUnknown; patient: z.ZodUnknown; }, "strict", z.ZodTypeAny, { createdAt: Date; id: number; patientId: number; procedureCode: string; source: "COMBO" | "MANUAL"; appointmentId: number; patient?: unknown; procedureLabel?: string | null | undefined; fee?: number | null | undefined; category?: string | null | undefined; toothNumber?: string | null | undefined; toothSurface?: string | null | undefined; oralCavityArea?: string | null | undefined; comboKey?: string | null | undefined; appointment?: unknown; }, { createdAt: Date; id: number; patientId: number; procedureCode: string; source: "COMBO" | "MANUAL"; appointmentId: number; patient?: unknown; procedureLabel?: string | null | undefined; fee?: number | null | undefined; category?: string | null | undefined; toothNumber?: string | null | undefined; toothSurface?: string | null | undefined; oralCavityArea?: string | null | undefined; comboKey?: string | null | undefined; appointment?: unknown; }>; export type AppointmentProcedureInputType = z.infer; //# sourceMappingURL=AppointmentProcedure.input.d.ts.map