/* tslint:disable:all */ import { IKushkiGateway } from "./../../lib/repository/IKushkiGateway"; import { ISecureService } from "./../../lib/repository/ISecureService"; import { Observable } from "rxjs"; import { SecureOtpRequest } from "./../../lib/types/secure_otp_request"; import { SecureOtpResponse } from "./../../lib/types/secure_otp_response"; /** * SecureService implementation. */ export declare class SecureService implements ISecureService { private readonly _gateway; constructor(gateway: IKushkiGateway); requestSecureServiceValidation(mid: string, request: SecureOtpRequest, isTest: boolean, regional: boolean): Observable; }