import ClientInstance from "../../../instance/ClientInstance";
export default class TwoFactorManager {
    private client;
    constructor(client: ClientInstance);
    retrieveQrCode(): Promise<unknown>;
    enable(code: string): Promise<string[]>;
    disable(password: string): Promise<unknown>;
}
