import { z } from 'zod';
export declare const refundInfoInterfaceSchema: z.ZodObject<{
    supportRequest: z.ZodOptional<z.ZodString>;
    currency: z.ZodString;
    refundRequestEid: z.ZodOptional<z.ZodString>;
    amounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
}, "strip", z.ZodTypeAny, {
    currency: string;
    supportRequest?: string | undefined;
    amounts?: Record<string, number> | undefined;
    refundRequestEid?: string | undefined;
}, {
    currency: string;
    supportRequest?: string | undefined;
    amounts?: Record<string, number> | undefined;
    refundRequestEid?: string | undefined;
}>;
