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