import { HTTPResponse } from '../response';
import { HTTPResponder } from '../response/Responder';
export declare class Middleware extends HTTPResponder {
    bind(): any;
    handle(...args: any[]): Promise<void | HTTPResponse<any>>;
}
