import { z } from 'zod';
export declare const PaymentChargeSchema: z.ZodObject<{
    refNo: z.ZodString;
    skuCode: z.ZodString;
    refId: z.ZodString;
    max_price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
}, "strip", z.ZodTypeAny, {
    refNo: string;
    skuCode: string;
    refId: string;
    max_price?: number | null | undefined;
}, {
    refNo: string;
    skuCode: string;
    refId: string;
    max_price?: number | null | undefined;
}>;
export type PaymentCharge = z.infer<typeof PaymentChargeSchema>;
