import * as z from 'zod'; export declare const PaymentModelSchema: z.ZodObject<{ id: z.ZodNumber; claimId: z.ZodNullable; patientId: z.ZodNumber; userId: z.ZodNumber; updatedById: z.ZodNullable; totalBilled: z.ZodNumber; totalPaid: z.ZodNumber; totalAdjusted: z.ZodNumber; totalDue: z.ZodNumber; status: z.ZodEnum<["PENDING", "PARTIALLY_PAID", "PAID", "OVERPAID", "DENIED", "VOID"]>; notes: z.ZodNullable; icn: z.ZodNullable; createdAt: z.ZodDate; updatedAt: z.ZodDate; claim: z.ZodNullable; patient: z.ZodUnknown; updatedBy: z.ZodNullable; serviceLineTransactions: z.ZodArray; serviceLines: z.ZodArray; }, "strict", z.ZodTypeAny, { status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED"; id: number; createdAt: Date; patientId: number; notes: string | null; userId: number; claimId: number | null; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; icn: string | null; updatedAt: Date; serviceLines: unknown[]; updatedById: number | null; patient?: unknown; claim?: unknown; updatedBy?: unknown; }, { status: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED"; id: number; createdAt: Date; patientId: number; notes: string | null; userId: number; claimId: number | null; totalBilled: number; totalPaid: number; totalAdjusted: number; totalDue: number; serviceLineTransactions: unknown[]; icn: string | null; updatedAt: Date; serviceLines: unknown[]; updatedById: number | null; patient?: unknown; claim?: unknown; updatedBy?: unknown; }>; export type PaymentPureType = z.infer; //# sourceMappingURL=Payment.pure.d.ts.map