import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class ShippingDetails extends ClientSDK { /** * Add buyer shipping details * * @remarks * Associate shipping details to a buyer. */ create(shippingDetailsCreate: components.ShippingDetailsCreate, buyerId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * List a buyer's shipping details * * @remarks * List all the shipping details associated to a specific buyer. */ list(buyerId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Get buyer shipping details * * @remarks * Get a buyer's shipping details. */ get(buyerId: string, shippingDetailsId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Update a buyer's shipping details * * @remarks * Update the shipping details associated to a specific buyer. */ update(shippingDetailsUpdate: components.ShippingDetailsUpdate, buyerId: string, shippingDetailsId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Delete a buyer's shipping details * * @remarks * Delete the shipping details associated to a specific buyer. */ delete(buyerId: string, shippingDetailsId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=shippingdetails.d.ts.map