import * as z from "zod/v3"; export type GetBuyerGlobals = { merchantAccountId?: string | undefined; }; export type GetBuyerRequest = { /** * The ID of the buyer to retrieve. */ buyerId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetBuyerRequest$Outbound = { buyer_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetBuyerRequest$outboundSchema: z.ZodType; export declare function getBuyerRequestToJSON(getBuyerRequest: GetBuyerRequest): string; //# sourceMappingURL=getbuyer.d.ts.map