import * as z from "zod/v3"; export type StripeConnectOptions = { /** * The Stripe Connect account to target using the `Stripe-Account` header. */ stripeAccount?: string | null | undefined; /** * The fee to charge the connected account. */ applicationFeeAmount?: number | null | undefined; /** * The Stripe Connect account to target using the `on_behalf_of` request parameter. */ onBehalfOf?: string | null | undefined; /** * The Stripe Connect account to target using the `transfer_data.destination` request parameter. */ transferDataDestination?: string | null | undefined; /** * A string that identifies the payment as part of a group. */ transferGroup?: string | null | undefined; }; /** @internal */ export type StripeConnectOptions$Outbound = { stripe_account?: string | null | undefined; application_fee_amount?: number | null | undefined; on_behalf_of?: string | null | undefined; transfer_data_destination?: string | null | undefined; transfer_group?: string | null | undefined; }; /** @internal */ export declare const StripeConnectOptions$outboundSchema: z.ZodType; export declare function stripeConnectOptionsToJSON(stripeConnectOptions: StripeConnectOptions): string; //# sourceMappingURL=stripeconnectoptions.d.ts.map