import * as z from "zod/v3"; import { WpayPaytoResourceOptions, WpayPaytoResourceOptions$Outbound } from "./wpaypaytoresourceoptions.js"; export type WpayPaytoOptions = { /** * Options to pass to the `instrument` resource in the Wpay PayTo API. */ instrument?: WpayPaytoResourceOptions | null | undefined; /** * Options to pass to the `payment` resource in the Wpay PayTo API. */ payment?: WpayPaytoResourceOptions | null | undefined; /** * Options to pass to the `refund` resource in the Wpay PayTo API. */ refund?: WpayPaytoResourceOptions | null | undefined; }; /** @internal */ export type WpayPaytoOptions$Outbound = { instrument?: WpayPaytoResourceOptions$Outbound | null | undefined; payment?: WpayPaytoResourceOptions$Outbound | null | undefined; refund?: WpayPaytoResourceOptions$Outbound | null | undefined; }; /** @internal */ export declare const WpayPaytoOptions$outboundSchema: z.ZodType; export declare function wpayPaytoOptionsToJSON(wpayPaytoOptions: WpayPaytoOptions): string; //# sourceMappingURL=wpaypaytooptions.d.ts.map