import * as z from "zod/v3"; export type AdyenPixRecurringAmount = { /** * Amount in the smallest currency unit for the given currency */ value?: number | null | undefined; /** * ISO 4217 currency code */ currency?: string | null | undefined; }; /** @internal */ export type AdyenPixRecurringAmount$Outbound = { value?: number | null | undefined; currency?: string | null | undefined; }; /** @internal */ export declare const AdyenPixRecurringAmount$outboundSchema: z.ZodType; export declare function adyenPixRecurringAmountToJSON(adyenPixRecurringAmount: AdyenPixRecurringAmount): string; //# sourceMappingURL=adyenpixrecurringamount.d.ts.map