import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { ListAccountIdsResponse, BusinessStatusOptions, BusinessStatusResponse, EstimateDeliveryOptions, EstimateDeliveryResponse, EstimateDeliveryApplicationErrors, CreateDeliveryOptions, CreateDeliveryResponse, CreateDeliveryApplicationErrors } from './index.typings.js'; export { Address, AddressLocation, BusinessStatus, BusinessStatusRequest, BusinessStatusWithLiterals, CreateDeliveryOptionsDispatchTimeOneOf, CreateDeliveryRequest, CreateDeliveryRequestDispatchTimeOneOf, Customer, EstimateDeliveryOptionsDispatchTimeOneOf, EstimateDeliveryRequest, EstimateDeliveryRequestDispatchTimeOneOf, ListAccountIdsRequest, Money, StreetAddress, Tpa } from './index.typings.js'; declare function listAccountIds$1(httpClient: HttpClient): ListAccountIdsSignature; interface ListAccountIdsSignature { /** * Retrieves list of account belongs to given instance * @param - Instance ID. */ (instanceId: string): Promise>; } declare function businessStatus$1(httpClient: HttpClient): BusinessStatusSignature; interface BusinessStatusSignature { /** * Retrieves the delivery vendor business status * @param - Instance ID. */ (instanceId: string, options: NonNullablePaths): Promise>; } declare function estimateDelivery$1(httpClient: HttpClient): EstimateDeliverySignature; interface EstimateDeliverySignature { /** * Retrieves an estimate of the delivery * @param - Instance ID. */ (instanceId: string, options?: NonNullablePaths): Promise & { __applicationErrorsType?: EstimateDeliveryApplicationErrors; }>; } declare function createDelivery$1(httpClient: HttpClient): CreateDeliverySignature; interface CreateDeliverySignature { /** * Creates a new delivery order * @param - Instance ID. */ (instanceId: string, options?: NonNullablePaths): Promise & { __applicationErrorsType?: CreateDeliveryApplicationErrors; }>; } declare const listAccountIds: MaybeContext & typeof listAccountIds$1>; declare const businessStatus: MaybeContext & typeof businessStatus$1>; declare const estimateDelivery: MaybeContext & typeof estimateDelivery$1>; declare const createDelivery: MaybeContext & typeof createDelivery$1>; export { BusinessStatusOptions, BusinessStatusResponse, CreateDeliveryApplicationErrors, CreateDeliveryOptions, CreateDeliveryResponse, EstimateDeliveryApplicationErrors, EstimateDeliveryOptions, EstimateDeliveryResponse, ListAccountIdsResponse, businessStatus, createDelivery, estimateDelivery, listAccountIds };