import type { Transport } from '@23blocks/contracts'; import type { OrderTax, CreateOrderTaxRequest, UpdateOrderTaxRequest } from '../types/order-tax.js'; export interface OrderTaxesService { list(orderUniqueId: string): Promise; get(orderUniqueId: string, uniqueId: string): Promise; create(orderUniqueId: string, data: CreateOrderTaxRequest): Promise; update(orderUniqueId: string, uniqueId: string, data: UpdateOrderTaxRequest): Promise; delete(orderUniqueId: string, uniqueId: string): Promise; } export declare function createOrderTaxesService(transport: Transport, _config: { apiKey: string; }): OrderTaxesService; //# sourceMappingURL=order-taxes.service.d.ts.map