import * as z from "zod/v3"; export type AdyenOptions = { /** * Passes additional data to the Adyen API when creating a transaction. */ additionalData?: { [k: string]: string; } | null | undefined; }; /** @internal */ export type AdyenOptions$Outbound = { additionalData?: { [k: string]: string; } | null | undefined; }; /** @internal */ export declare const AdyenOptions$outboundSchema: z.ZodType; export declare function adyenOptionsToJSON(adyenOptions: AdyenOptions): string; //# sourceMappingURL=adyenoptions.d.ts.map