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