import { CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../definitions'; import { Command } from '../lib/command'; export declare class GenerateCommand extends Command implements CommandPreRun { getMetadata(): Promise; preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; }