import HttpStatus from '../http/HttpStatus';
import View from '../view/View';
export default class ModelAndViewContainer {
    status: HttpStatus;
    view: View | string;
    redirect: Record<string, any>;
    requestHandled: boolean;
    isViewReference(): boolean;
    get model(): Record<string, any>;
    addAttribute(name: string, value: object): void;
    addAllAttributes(attributes: object): void;
    containAttribute(name: string): boolean;
    mergeAttributes(attributes: object): void;
}
