import { AmazonSellingPartnerAPIClient } from "./AmazonSellingPartnerAPIClient.js"; import { CancelShipmentResponse, CreateShipmentRequest, CreateShipmentResponse, GetAdditionalSellerInputsRequest, GetAdditionalSellerInputsResponse, GetEligibleShipmentServicesRequest, GetEligibleShipmentServicesResponse, GetShipmentResponse } from "../types/merchant-fulfillment-api/v0.js"; /** A client for v0 of the Merchant Fulfillment endpoints of the Amazon Selling Partner API. */ export declare class AmazonSellingPartnerMerchantFulfillmentAPIClient { amazonSellingPartnerApiClient: AmazonSellingPartnerAPIClient; constructor(amazonSellingPartnerApiClient: AmazonSellingPartnerAPIClient); cancelShipment(shipmentId: string): Promise; cancelShipmentOld(shipmentId: string): Promise; createShipment(body: CreateShipmentRequest): Promise; getAdditionalSellerInputs(body: GetAdditionalSellerInputsRequest): Promise; getAdditionalSellerInputsOld(body: GetAdditionalSellerInputsRequest): Promise; getEligibleShipmentServices(body: GetEligibleShipmentServicesRequest): Promise; getEligibleShipmentServicesOld(body: GetEligibleShipmentServicesRequest): Promise; getShipment(shipmentId: string): Promise; } //# sourceMappingURL=AmazonSellingPartnerMerchantFulfillmentAPIClient.d.ts.map