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