import { HttpClient } from './http'; import { EasyShip } from './sections/easy-ship'; import { Feeds } from './sections/feeds'; import { Finances } from './sections/finances/finances'; import { FulfillmentInboundShipment } from './sections/fulfillment-inbound-shipment/fulfillment-inbound-shipment'; import { FulfillmentInventory } from './sections/fulfillment-inventory'; import { FulfillmentOutboundShipment } from './sections/fulfillment-outbound-shipment/fulfillment-outbound-shipment'; import { MerchantFulfillment } from './sections/merchant-fulfillment/merchant-fulfillment'; import { Orders } from './sections/orders'; import { Products } from './sections/products/products'; import { Recommendations } from './sections/recommendations'; import { Reports } from './sections/reports'; import { Sellers } from './sections/sellers'; import { ShipmentInvoicing } from './sections/shipment-invoicing'; import { Subscriptions } from './sections/subscriptions'; export declare class MWS { private httpClient; private _easyShip; private _feeds; private _finances; private _fulfillmentInventory; private _fulfillmentInboundShipment; private _fulfillmentOutboundShipment; private _merchantFulfillment; private _orders; private _products; private _reports; private _recommendations; private _sellers; private _subscriptions; private _shipmentInvoicing; constructor(httpClient: HttpClient); get easyShip(): EasyShip; get sellers(): Sellers; get orders(): Orders; get feeds(): Feeds; get finances(): Finances; get fulfillmentInboundShipment(): FulfillmentInboundShipment; get fulfillmentInventory(): FulfillmentInventory; get fulfillmentOutboundShipment(): FulfillmentOutboundShipment; get merchantFulfillment(): MerchantFulfillment; get products(): Products; get recommendations(): Recommendations; get reports(): Reports; get shipmentInvoicing(): ShipmentInvoicing; get subscriptions(): Subscriptions; }