import { ConfigureViewType } from './configure-view-type'; export declare class ConfigureView { readonly id: number; readonly name: string; readonly isMainView: boolean; readonly type: ConfigureViewType; readonly width: number; readonly height: number; configure: string; readonly showSettingsWhenInited: boolean; disabled: boolean; modified: boolean; constructor(id: number, name: string, isMainView: boolean, type: ConfigureViewType, width: number, height: number, configure: string, showSettingsWhenInited: boolean); }