/// <reference types="jest" />
import { Auth0Service } from '../../../authzero/auth0Service';
import { DeviceService } from '../../../devices';
import { DeviceVerification } from '../../../devices/deviceVerification';
export declare class IdentityService {
    private apiService;
    private deviceService;
    private deviceVerification;
    static identitySignUp: jest.Mock<any, any>;
    static identityLogin: jest.Mock<any, any>;
    static identityForgotPassword: jest.Mock<any, any>;
    static identityChangePassword: jest.Mock<any, any>;
    static checkAccessToken: jest.Mock<any, any>;
    static identityPhoneRegister: jest.Mock<any, any>;
    static identityPhoneVerify: jest.Mock<any, any>;
    static identitySetPin: jest.Mock<any, any>;
    static identityVerifyPin: jest.Mock<any, any>;
    static identityForcedLogoff: jest.Mock<any, any>;
    static initiateForcedLogoff: jest.Mock<any, any>;
    constructor(apiService: Auth0Service, deviceService: DeviceService, deviceVerification: DeviceVerification);
    identitySignUp: jest.Mock<any, any>;
    identityLogin: jest.Mock<any, any>;
    identityForgotPassword: jest.Mock<any, any>;
    identityChangePassword: jest.Mock<any, any>;
    checkAccessToken: jest.Mock<any, any>;
    identityPhoneRegister: jest.Mock<any, any>;
    identityPhoneVerify: jest.Mock<any, any>;
    identitySetPin: jest.Mock<any, any>;
    identityVerifyPin: jest.Mock<any, any>;
    identityForcedLogoff: jest.Mock<any, any>;
    initiateForcedLogoff: jest.Mock<any, any>;
}
