import { Command } from '@oclif/core'; export declare class Init extends Command { static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag; }; static description: string; static strict: boolean; static args: { name: string; }[]; static examples: string[]; private initController; /** * Runs the init command and parses the passed functions * @returns {Promise} - init command * @memberof Init */ run(): Promise; }