import { AppSettings, Timekeeper } from '../common/models/index';
export interface ViewOptions {
    version: string;
    title: string;
    user?: any;
    appSettings?: AppSettings;
    timekeeper?: Timekeeper;
    stateful?: boolean;
}
export declare function layout(options: ViewOptions, content: string): string;
export declare function swivLayout(options: ViewOptions): string;
export declare function errorLayout(options: ViewOptions, message: string, error?: any): string;
