import { Command } from '@oclif/command'; import { IConfig } from '@oclif/config'; import { SystemModel } from '../model/system'; export default class Init extends Command { static description: string; system: SystemModel; constructor(argv: string[], config: IConfig); run(): Promise; }