import { HttpClient } from "@angular/common/http"; import { Observable } from "rxjs"; import { LivenessResult } from "../../../model/face.model"; import { HttpService } from "../http.service"; export declare class FaceService extends HttpService { private _http; constructor(_http: HttpClient); checkQuality(data: { file: string; token: string; url: string; }): Observable; detectFace(data: { idImage: File; token: string; url: string; }): Observable; matchPad(padId: string, probe: File, token: string, url: string): Observable; getLivenessProof(faceToken: any, faceUrl: any, livnessToken: any): Observable; }