import { Command } from "@oclif/core"; export default class AuthLogin extends Command { static description: string; static examples: { command: string; description: string; }[]; static flags: { staging: import("@oclif/core/interfaces").BooleanFlag; }; private pollingInterval; private client_id; private grant_type; private endpoint; private env; run(): Promise; private requestDeviceCode; private pollForToken; }