import { GeneratorCommand } from './GeneratorCommand'; export declare class MiddlewareMakeCommand extends GeneratorCommand { protected getSuffix(): string; /** * Command name. The command will be registered using this name only. Make * sure their aren't any spaces inside the command name. */ static commandName: string; /** * The description of the command displayed on the help screen. * A good command will always have some description. */ static description: string; name: string; protected getStub(): string; handle(...args: any[]): Promise; getDestinationPath(): string; }