import { SfCommand } from '@salesforce/sf-plugins-core'; import { AuthFields } from '@salesforce/core'; import { Interfaces } from '@oclif/core'; export default class LoginJwt extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly aliases: string[]; static readonly deprecateAliases = true; static readonly flags: { username: Interfaces.OptionFlag; 'jwt-key-file': Interfaces.OptionFlag; 'client-id': Interfaces.OptionFlag; 'instance-url': Interfaces.OptionFlag; 'set-default-dev-hub': Interfaces.BooleanFlag; 'set-default': Interfaces.BooleanFlag; alias: Interfaces.OptionFlag; 'no-prompt': Interfaces.BooleanFlag; loglevel: Interfaces.OptionFlag; }; private flags; private logger; run(): Promise; private initAuthInfo; }