import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Asset } from '../domain/item'; export declare class ItemSummaryAssetsService { private http; private searchString; private filterColumnNameValue; private initiator; private readonly moveAssetsBackToOpportunityUrl; private readonly getAssetsFromEquipIdsUrl; private readonly moveAssetsBackToWipUrl; private readonly moveAssetsToHoldingPenUrl; private readonly moveAssetsToAnotherOpportunityUrl; private readonly moveAssetsToAnotherContractUrl; private readonly moveAssetsToAnotherEventUrl; private readonly componentizeditemsUrl; private readonly checkOperationalEntityUrl; constructor(http: HttpClient); private init; getSandBoxUrl(): Observable; updateDoesCustomerOwesMoney(assetPackageId: number, doesCustomerOwes: boolean): Observable; getEquipIdsFromAssets(assets: Asset[]): string; getAssetsFromEquipIds(equipIds: string): Observable; moveAssetsBackToOpportunity(contractId: number, assets: Asset[]): Observable; moveAssetsBackToWip(assets: Asset[]): Observable; moveAssetsToHoldingPen(assets: Asset[]): Observable; moveAssetsToAnotherOpportunity(opportunityId: number, retainSaleInfo: string, assets: Asset[]): Observable; moveAssetsToAnotherContract(contractId: number, sendToOperations: string, retainSaleInfo: string, assets: Asset[]): Observable; moveAssetsToAnotherEvent(opportunityId: number, assets: Asset[]): Observable; getComponentizedItems(auctionEventId: number, equipmentIds: Array): Observable; checkOperationalEntity(opportunityId: number, assets: Asset[]): Observable; }