import * as z from "zod/v3"; import * as components from "../components/index.js"; export type AddBuyerGlobals = { merchantAccountId?: string | undefined; }; export type AddBuyerRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; buyerCreate: components.BuyerCreate; }; /** @internal */ export type AddBuyerRequest$Outbound = { merchantAccountId?: string | null | undefined; BuyerCreate: components.BuyerCreate$Outbound; }; /** @internal */ export declare const AddBuyerRequest$outboundSchema: z.ZodType; export declare function addBuyerRequestToJSON(addBuyerRequest: AddBuyerRequest): string; //# sourceMappingURL=addbuyer.d.ts.map