/**
 * Get the Next function (for express application and middleware).
 *
 * @decorator
 * @operation
 * @input
 */
export declare function Next(): ParameterDecorator;
declare global {
    namespace TsED {
        interface NextFunction extends Function {
        }
    }
}
/**
 * Get the Next function (for express application and middleware).
 *
 * @decorator
 * @operation
 * @input
 */
export declare type Next = TsED.NextFunction;
