import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { L as LocalDeliveryOption, a as LocalDeliveryOptionNonNullableFields, G as GetLocalDeliveryOptionOptions, b as ListLocalDeliveryOptionsResponse, c as ListLocalDeliveryOptionsResponseNonNullableFields, d as LocalDeliveryOptionsQueryBuilder, U as UpdateLocalDeliveryOption, D as DeleteLocalDeliveryOptionOptions, B as BulkCreateLocalDeliveryOptionResponse, e as BulkCreateLocalDeliveryOptionResponseNonNullableFields, f as BulkUpdateLocalDeliveryOptionResponse, g as BulkUpdateLocalDeliveryOptionResponseNonNullableFields, A as AddDeliveryRegionOptions, h as AddDeliveryRegionResponse, i as AddDeliveryRegionResponseNonNullableFields, R as RemoveDeliveryRegionOptions, j as RemoveDeliveryRegionResponse, k as RemoveDeliveryRegionResponseNonNullableFields } from './ecom-v1-local-delivery-option-local-delivery-options.universal-_dk6OvhK.js'; export { ag as ActionEvent, ah as AddDeliveryRegionRequest, s as AddressLocation, a4 as BulkCreateLocalDeliveryOptionRequest, a7 as BulkDeleteLocalDeliveryOptionRequest, a8 as BulkDeleteLocalDeliveryOptionResponse, a6 as BulkUpdateLocalDeliveryOptionRequest, F as Condition, C as ConditionType, E as ConditionalRates, H as CreateLocalDeliveryOptionRequest, I as CreateLocalDeliveryOptionResponse, am as CreateLocalDeliveryOptionResponseNonNullableFields, X as CursorPaging, _ as CursorPagingMetadata, $ as Cursors, t as CustomAreaConfig, m as DayOfWeek, w as DaySlot, v as Days, a2 as DeleteLocalDeliveryOptionRequest, a3 as DeleteLocalDeliveryOptionResponse, p as Destination, aa as DomainEvent, ab as DomainEventBodyOneOf, a9 as Empty, ac as EntityCreatedEvent, af as EntityDeletedEvent, ae as EntityUpdatedEvent, J as GetLocalDeliveryOptionRequest, K as GetLocalDeliveryOptionResponse, an as GetLocalDeliveryOptionResponseNonNullableFields, ak as IdentificationData, al as IdentificationDataIdOneOf, l as LengthUnit, M as ListLocalDeliveryOptionsRequest, r as LocalDeliveryAddress, o as LocalDeliveryOptionConfigOneOf, a5 as LocalDeliveryOptionError, aq as LocalDeliveryOptionsQueryResult, n as LogicalOperator, aj as MessageEnvelope, V as Paging, Q as QueryLocalDeliveryOptionsRequest, Y as QueryLocalDeliveryOptionsResponse, ao as QueryLocalDeliveryOptionsResponseNonNullableFields, N as QueryV2, O as QueryV2PagingMethodOneOf, q as RadiusConfig, ai as RemoveDeliveryRegionRequest, ad as RestoreInfo, u as ScheduledDelivery, S as SortOrder, P as Sorting, z as TimeOfDay, x as TimePoint, T as TimeSlot, y as TimeWindow, a0 as UpdateLocalDeliveryOptionRequest, a1 as UpdateLocalDeliveryOptionResponse, ap as UpdateLocalDeliveryOptionResponseNonNullableFields, W as WebhookIdentityType, Z as ZipCodeConfig } from './ecom-v1-local-delivery-option-local-delivery-options.universal-_dk6OvhK.js'; declare function createLocalDeliveryOption$1(httpClient: HttpClient): CreateLocalDeliveryOptionSignature; interface CreateLocalDeliveryOptionSignature { /** */ (localDeliveryOption: LocalDeliveryOption): Promise; } declare function getLocalDeliveryOption$1(httpClient: HttpClient): GetLocalDeliveryOptionSignature; interface GetLocalDeliveryOptionSignature { /** */ (localDeliveryOptionId: string, options?: GetLocalDeliveryOptionOptions | undefined): Promise; } declare function listLocalDeliveryOptions$1(httpClient: HttpClient): ListLocalDeliveryOptionsSignature; interface ListLocalDeliveryOptionsSignature { /** @deprecated method is deprecated due to the fact that external_id is deprecated */ (externalId: string): Promise; } declare function queryLocalDeliveryOptions$1(httpClient: HttpClient): QueryLocalDeliveryOptionsSignature; interface QueryLocalDeliveryOptionsSignature { /** * Retrieves a list of local delivery options, given the provided paging, filtering, and sorting. * * For field support for filters and sorting, see [Local Delivery: Supported Filters and Sorting](https://dev.wix.com/docs/rest/business-management/payments/tax/tax-regions/supported-filters-and-sorting). * * To learn about working with _Query_ endpoints, see * [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language), * [Sorting and Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging), * and [Field Projection](https://dev.wix.com/api/rest/getting-started/field-projection). */ (): LocalDeliveryOptionsQueryBuilder; } declare function updateLocalDeliveryOption$1(httpClient: HttpClient): UpdateLocalDeliveryOptionSignature; interface UpdateLocalDeliveryOptionSignature { /** @param - LocalDeliveryOptionId - unique identifier of local delivery option */ (_id: string | null, localDeliveryOption: UpdateLocalDeliveryOption): Promise; } declare function deleteLocalDeliveryOption$1(httpClient: HttpClient): DeleteLocalDeliveryOptionSignature; interface DeleteLocalDeliveryOptionSignature { /** */ (localDeliveryOptionId: string, options?: DeleteLocalDeliveryOptionOptions | undefined): Promise; } declare function bulkCreateLocalDeliveryOption$1(httpClient: HttpClient): BulkCreateLocalDeliveryOptionSignature; interface BulkCreateLocalDeliveryOptionSignature { /** */ (localDeliveryOptions: LocalDeliveryOption[]): Promise; } declare function bulkUpdateLocalDeliveryOption$1(httpClient: HttpClient): BulkUpdateLocalDeliveryOptionSignature; interface BulkUpdateLocalDeliveryOptionSignature { /** */ (localDeliveryOptions: LocalDeliveryOption[]): Promise; } declare function bulkDeleteLocalDeliveryOption$1(httpClient: HttpClient): BulkDeleteLocalDeliveryOptionSignature; interface BulkDeleteLocalDeliveryOptionSignature { /** */ (ids: string[]): Promise; } declare function addDeliveryRegion$1(httpClient: HttpClient): AddDeliveryRegionSignature; interface AddDeliveryRegionSignature { /** */ (deliveryRegionId: string, options?: AddDeliveryRegionOptions | undefined): Promise; } declare function removeDeliveryRegion$1(httpClient: HttpClient): RemoveDeliveryRegionSignature; interface RemoveDeliveryRegionSignature { /** */ (deliveryRegionId: string, options?: RemoveDeliveryRegionOptions | undefined): Promise; } declare const createLocalDeliveryOption: MaybeContext & typeof createLocalDeliveryOption$1>; declare const getLocalDeliveryOption: MaybeContext & typeof getLocalDeliveryOption$1>; declare const listLocalDeliveryOptions: MaybeContext & typeof listLocalDeliveryOptions$1>; declare const queryLocalDeliveryOptions: MaybeContext & typeof queryLocalDeliveryOptions$1>; declare const updateLocalDeliveryOption: MaybeContext & typeof updateLocalDeliveryOption$1>; declare const deleteLocalDeliveryOption: MaybeContext & typeof deleteLocalDeliveryOption$1>; declare const bulkCreateLocalDeliveryOption: MaybeContext & typeof bulkCreateLocalDeliveryOption$1>; declare const bulkUpdateLocalDeliveryOption: MaybeContext & typeof bulkUpdateLocalDeliveryOption$1>; declare const bulkDeleteLocalDeliveryOption: MaybeContext & typeof bulkDeleteLocalDeliveryOption$1>; declare const addDeliveryRegion: MaybeContext & typeof addDeliveryRegion$1>; declare const removeDeliveryRegion: MaybeContext & typeof removeDeliveryRegion$1>; export { AddDeliveryRegionOptions, AddDeliveryRegionResponse, AddDeliveryRegionResponseNonNullableFields, BulkCreateLocalDeliveryOptionResponse, BulkCreateLocalDeliveryOptionResponseNonNullableFields, BulkUpdateLocalDeliveryOptionResponse, BulkUpdateLocalDeliveryOptionResponseNonNullableFields, DeleteLocalDeliveryOptionOptions, GetLocalDeliveryOptionOptions, ListLocalDeliveryOptionsResponse, ListLocalDeliveryOptionsResponseNonNullableFields, LocalDeliveryOption, LocalDeliveryOptionNonNullableFields, LocalDeliveryOptionsQueryBuilder, RemoveDeliveryRegionOptions, RemoveDeliveryRegionResponse, RemoveDeliveryRegionResponseNonNullableFields, UpdateLocalDeliveryOption, addDeliveryRegion, bulkCreateLocalDeliveryOption, bulkDeleteLocalDeliveryOption, bulkUpdateLocalDeliveryOption, createLocalDeliveryOption, deleteLocalDeliveryOption, getLocalDeliveryOption, listLocalDeliveryOptions, queryLocalDeliveryOptions, removeDeliveryRegion, updateLocalDeliveryOption };