import { CommandLineInputs, CommandLineOptions, CommandMetadata } from '../definitions'; import { Command } from '../lib/command'; export declare class InitCommand extends Command { getMetadata(): Promise; preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; initializeMultiProject(inputs: CommandLineInputs, options: CommandLineOptions): Promise; initializeApp(inputs: CommandLineInputs, options: CommandLineOptions): Promise; getProjectFilePath(): string; }