import { Command, flags } from '@oclif/command'; export default class Install extends Command { static description: string; static examples: string[]; static flags: flags.Input; static strict: boolean; static args: never[]; run(): Promise; }