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