import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreatePayoutGlobals = { merchantAccountId?: string | undefined; }; export type CreatePayoutRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; payoutCreate: components.PayoutCreate; }; /** @internal */ export type CreatePayoutRequest$Outbound = { merchantAccountId?: string | null | undefined; PayoutCreate: components.PayoutCreate$Outbound; }; /** @internal */ export declare const CreatePayoutRequest$outboundSchema: z.ZodType; export declare function createPayoutRequestToJSON(createPayoutRequest: CreatePayoutRequest): string; //# sourceMappingURL=createpayout.d.ts.map