import { BaseCommand } from './baseCommand'; import type { Account } from '../rest/accounts'; export declare const selectAccount: (accounts: Array, { onCancel }: { onCancel: () => void; }) => Promise; export default class Login extends BaseCommand { #private; static hidden: boolean; static idempotent: boolean; static description: string; private _checkExistingCredentials; private _isLoginSuccess; run(): Promise; }