import { ITelegramClient } from '../../client.types.js'; /** * Change your 2FA password */ export declare function changeCloudPassword(client: ITelegramClient, params: { /** Current password as plaintext */ currentPassword: string; /** New password as plaintext */ newPassword: string; /** Hint for the new password */ hint?: string; }): Promise;