import { Command, flags } from '@oclif/command'; export default class LoginCommand extends Command { static description: string; static examples: string[]; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; appId: flags.IOptionFlag; privateKey: flags.IOptionFlag; }; run(): Promise; loginWithQrCode(): Promise; loginWithPrivateKey(): Promise; }