import { Observable } from "rxjs"; import { HttpClient } from "@angular/common/http"; import { SellerLocation } from "../domain/item"; export declare class AssetLocationService { private http; private readonly saveLocationUrl; constructor(http: HttpClient); saveLocation(assetLocation: SellerLocation): Observable; }