import { Request, Response, NextFunction } from 'express';
import { RedirectPath } from './types';
export declare function redirectHandler(fromPath: string, toPath: RedirectPath | string): (req: Request, res: Response, next: NextFunction) => void;
