import { NextFunction } from 'express-serve-static-core'; import { IRequest } from '../request/IRequest'; import { IResponse } from '../response/IResponse'; export declare type INextFunction = NextFunction; export declare type IMiddleware = (request: IRequest, response: IResponse, next: INextFunction) => void; export declare type IMiddlewareConfig = string; export declare type IMiddlewares = Set;