import { z } from "zod"; export declare const payInstallmentSchema: z.ZodObject<{ params: z.ZodObject<{ id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; }, { id: string; }>; body: z.ZodObject<{ amount: z.ZodNumber; provider: z.ZodDefault>; providerReference: z.ZodString; customerPhone: z.ZodString; notes: z.ZodOptional; metadata: z.ZodOptional>; }, "strip", z.ZodTypeAny, { amount: number; provider: "AIRTEL_MONEY" | "CASH" | "MOMO_PAY"; providerReference: string; customerPhone: string; notes?: string | undefined; metadata?: Record | undefined; }, { amount: number; providerReference: string; customerPhone: string; provider?: "AIRTEL_MONEY" | "CASH" | "MOMO_PAY" | undefined; notes?: string | undefined; metadata?: Record | undefined; }>; }, "strip", z.ZodTypeAny, { params: { id: string; }; body: { amount: number; provider: "AIRTEL_MONEY" | "CASH" | "MOMO_PAY"; providerReference: string; customerPhone: string; notes?: string | undefined; metadata?: Record | undefined; }; }, { params: { id: string; }; body: { amount: number; providerReference: string; customerPhone: string; provider?: "AIRTEL_MONEY" | "CASH" | "MOMO_PAY" | undefined; notes?: string | undefined; metadata?: Record | undefined; }; }>;