import { HttpClient } from '@angular/common/http'; export declare class CostService { protected httpClient: HttpClient; constructor(httpClient: HttpClient); getCostByJobId(jobId: string): Promise; getCostTypeList(): Promise; getCostType(typeId: string): Promise; addCost(cost: any): Promise; updateCost(cost: any): Promise; }