import Command from "./Command"; declare class MakeControllerCommand extends Command { protected signature: string; protected description: string; handle(): Promise<0 | 1>; } export default MakeControllerCommand;