import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; export declare class PatrolSheetService { private httpClient; constructor(httpClient: HttpClient); getPatrolSheetsByJobId(jobId: any): Observable; getPatrolSheetsByJobIdAndgroupId(jobId: any, groupId: any): Observable; getPatrolSheetsByJobIdAndEpNo(jobId: string, epNo: string): Promise; updatePatrolSheet(sheet: any): any; }