import type { TelegramClient } from "./TelegramClient"; export interface TwoFaParams { isCheckPassword?: boolean; currentPassword?: string; newPassword?: string; hint?: string; email?: string; emailCodeCallback?: (length: number) => Promise; onEmailCodeError?: (err: Error) => void; } /** * Changes the 2FA settings of the logged in user. Note that this method may be *incredibly* slow depending on the prime numbers that must be used during the process to make sure that everything is safe. Has no effect if both current and new password are omitted. * @param client: The telegram client instance * @param isCheckPassword: Must be ``true`` if you want to check the current password * @param currentPassword: The current password, to authorize changing to ``new_password``. Must be set if changing existing 2FA settings. Must **not** be set if 2FA is currently disabled. Passing this by itself will remove 2FA (if correct). * @param newPassword: The password to set as 2FA. If 2FA was already enabled, ``currentPassword`` **must** be set. Leaving this blank or `undefined` will remove the password. * @param hint: Hint to be displayed by Telegram when it asks for 2FA. Must be set when changing or creating a new password. Has no effect if ``newPassword`` is not set. * @param email: Recovery and verification email. If present, you must also set `emailCodeCallback`, else it raises an Error. * @param emailCodeCallback: If an email is provided, a callback that returns the code sent to it must also be set. This callback may be asynchronous. It should return a string with the code. The length of the code will be passed to the callback as an input parameter. * @param onEmailCodeError: Called when an error happens while sending an email. If the callback returns an invalid code, it will raise an rpc error with the message ``CODE_INVALID`` * @returns Promise * @throws this method can throw: "PASSWORD_HASH_INVALID" if you entered a wrong password (or set it to undefined). "EMAIL_INVALID" if the entered email is wrong "EMAIL_HASH_EXPIRED" if the user took too long to verify their email */ export declare function updateTwoFaSettings(client: TelegramClient, { isCheckPassword, currentPassword, newPassword, hint, email, emailCodeCallback, onEmailCodeError, }: TwoFaParams): Promise;