import { BaseResponse } from './base_response'; import express = require('express'); export declare class RedirectResponse extends BaseResponse { protected path: string; constructor(path: any); render(res: express.Response): void; }