export declare class Reply { send: (IActionResult) => void; constructor(send: (IActionResult) => void); redirect(url: string, status?: number): void; content(text: string, contentType?: string): void; json(data: {}): void; file(path: string): void; download(path: string, filename?: string): void; view(template: string, options?: {}): void; }