import { Client } from '../Client'; import * as fromModels from './model'; import * as fromRoot from '../+shared'; import { OneTimePassword } from './model'; import { SignInResponse } from '../authentication'; import { StringDto } from '../profile'; export declare class TwoFactorAuthApi { private readonly client; constructor(client: Client); getStatus(): Promise>; authenticate(body: OneTimePassword, url: string): Promise>; enableTotp(): Promise>; getTotpUrl(): Promise>; removeTotp(password: string): Promise>; verifySetup(body: OneTimePassword): Promise>; } //# sourceMappingURL=TwoFactorAuthApi.d.ts.map