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