import * as z from "zod/v3"; export type CheckoutPayoutOptions = { /** * The processing channel to be used for the payment. */ processingChannelId: string; /** * The ID of the currency account that will fund the payout. */ sourceId: string; }; /** @internal */ export type CheckoutPayoutOptions$Outbound = { processing_channel_id: string; source_id: string; }; /** @internal */ export declare const CheckoutPayoutOptions$outboundSchema: z.ZodType; export declare function checkoutPayoutOptionsToJSON(checkoutPayoutOptions: CheckoutPayoutOptions): string; //# sourceMappingURL=checkoutpayoutoptions.d.ts.map