import * as z from "zod/v3"; import { CheckoutPayoutOptions, CheckoutPayoutOptions$Outbound } from "./checkoutpayoutoptions.js"; export type PayoutConnectionOptions = { /** * Custom options for `checkout-card` payment service. */ checkoutCard?: CheckoutPayoutOptions | null | undefined; }; /** @internal */ export type PayoutConnectionOptions$Outbound = { "checkout-card"?: CheckoutPayoutOptions$Outbound | null | undefined; }; /** @internal */ export declare const PayoutConnectionOptions$outboundSchema: z.ZodType; export declare function payoutConnectionOptionsToJSON(payoutConnectionOptions: PayoutConnectionOptions): string; //# sourceMappingURL=payoutconnectionoptions.d.ts.map