import { Command, flags } from '@oclif/command'; export default class Login extends Command { static description: string; static flags: { account: flags.IOptionFlag; }; run(): Promise; }