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