import * as z from 'zod'; export declare const PdfGroupInputSchema: z.ZodObject<{ id: z.ZodNumber; title: z.ZodString; titleKey: z.ZodEnum<["INSURANCE_CLAIM", "INSURANCE_CLAIM_PREAUTH", "ELIGIBILITY_STATUS", "CLAIM_STATUS", "OTHER"]>; createdAt: z.ZodDate; patientId: z.ZodNumber; patient: z.ZodUnknown; pdfs: z.ZodArray; }, "strict", z.ZodTypeAny, { id: number; title: string; titleKey: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER"; createdAt: Date; pdfs: unknown[]; patientId: number; patient?: unknown; }, { id: number; title: string; titleKey: "INSURANCE_CLAIM" | "INSURANCE_CLAIM_PREAUTH" | "ELIGIBILITY_STATUS" | "CLAIM_STATUS" | "OTHER"; createdAt: Date; pdfs: unknown[]; patientId: number; patient?: unknown; }>; export type PdfGroupInputType = z.infer; //# sourceMappingURL=PdfGroup.input.d.ts.map