import type { RequestHandler } from 'express';
/**
 * A middleware to add trailing slash to the url
 *
 * It will redirect '/foo' to '/foo/' with 302
 */
export declare const trailingSlashMiddleware: RequestHandler;
