import * as z from "zod/v3"; export type DeleteBuyerShippingDetailsGlobals = { merchantAccountId?: string | undefined; }; export type DeleteBuyerShippingDetailsRequest = { /** * The ID of the buyer to delete shipping details for. */ buyerId: string; /** * The ID of the shipping details to delete. */ shippingDetailsId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeleteBuyerShippingDetailsRequest$Outbound = { buyer_id: string; shipping_details_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeleteBuyerShippingDetailsRequest$outboundSchema: z.ZodType; export declare function deleteBuyerShippingDetailsRequestToJSON(deleteBuyerShippingDetailsRequest: DeleteBuyerShippingDetailsRequest): string; //# sourceMappingURL=deletebuyershippingdetails.d.ts.map