import { CreateShippingMethodInput, TestEligibleShippingMethodsInput, TestShippingMethodInput, UpdateShippingMethodInput } from '../../common/generated-types'; import { BaseDataService } from './base-data.service'; export declare class ShippingMethodDataService { private baseDataService; constructor(baseDataService: BaseDataService); getShippingMethods(take?: number, skip?: number): import("../query-result").QueryResult>; getShippingMethod(id: string): import("../query-result").QueryResult>; getShippingMethodOperations(): import("../query-result").QueryResult>; createShippingMethod(input: CreateShippingMethodInput): import("rxjs").Observable; updateShippingMethod(input: UpdateShippingMethodInput): import("rxjs").Observable; deleteShippingMethod(id: string): import("rxjs").Observable; testShippingMethod(input: TestShippingMethodInput): import("../query-result").QueryResult>; testEligibleShippingMethods(input: TestEligibleShippingMethodsInput): import("../query-result").QueryResult>; }