import { Command } from '@oclif/core'; export default class Logout extends Command { static description: string; static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag; accountId: import("@oclif/core/lib/interfaces").OptionFlag; delete: import("@oclif/core/lib/interfaces").BooleanFlag; }; static examples: string[]; private logoutController; /** * Runs the logout command and parses the passed flags * @returns {Promise} - logout command * @memberof Logout */ run(): Promise; }