import type { GetInventoryLocationsInput, InventoryLocationCreateDto, InventoryLocationDto, InventoryLocationUpdateDto, InventoryLocationWithNavigationPropertiesDto } from './models'; import { RestService } from '@abp/ng.core'; import type { PagedResultDto } from '@abp/ng.core'; import type { LookupDto, LookupRequestDto } from '../shared/models'; import * as i0 from "@angular/core"; export declare class InventoryLocationService { private restService; apiName: string; create: (input: InventoryLocationCreateDto) => import("rxjs").Observable; delete: (id: string) => import("rxjs").Observable; get: (id: string) => import("rxjs").Observable; getList: (input: GetInventoryLocationsInput) => import("rxjs").Observable>; getWithNavigationProperties: (id: string) => import("rxjs").Observable; update: (id: string, input: InventoryLocationUpdateDto) => import("rxjs").Observable; getInventoryLocationLookup: (input: LookupRequestDto) => import("rxjs").Observable>>; constructor(restService: RestService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }