import { Request, Response, NextFunction } from "express";
export declare const changeResponses: (req: Request, res: Response, next: NextFunction) => void;
declare module "express" {
    interface Response {
        render: (view: string, options?: object, callback?: (err: Error, html: string) => void) => void;
    }
}
