import { IContext } from '../IContext';
import { ResultValue } from './ResultValue';
/**
 * controller method return result type of view.
 * context type 'text/html'
 *
 * @export
 * @class ViewResult
 */
export declare class ViewResult extends ResultValue {
    private name;
    private model?;
    constructor(name: string, model?: object);
    sendValue(ctx: IContext): Promise<any>;
    static ρAnn(): any;
}
