import Command from '@oclif/command'; /** * Logout Class extending superClass Command */ export default class Logout extends Command { /** * @param string * Description of the logout command */ static description: string; /** * @param string * logout usage */ static usage: string; run(): Promise; }