import { HttpClient } from '@angular/common/http'; import { ConverterService, OccEndpointsService, OrderHistoryList, ReplenishmentOrder, ReplenishmentOrderList } from '@spartacus/core'; import { ReplenishmentOrderAdapter } from '@spartacus/order/core'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class OccReplenishmentOrderAdapter implements ReplenishmentOrderAdapter { protected http: HttpClient; protected occEndpoints: OccEndpointsService; protected converter: ConverterService; constructor(http: HttpClient, occEndpoints: OccEndpointsService, converter: ConverterService); load(userId: string, replenishmentOrderCode: string): Observable; loadReplenishmentDetailsHistory(userId: string, replenishmentOrderCode: string, pageSize?: number, currentPage?: number, sort?: string): Observable; cancelReplenishmentOrder(userId: string, replenishmentOrderCode: string): Observable; loadHistory(userId: string, pageSize?: number, currentPage?: number, sort?: string): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }