import { ILogicalView } from "../../api"; export declare class ReadableLogicalView { static readonly FIELD_REPORT_HANDLE = "ReportHandle"; static readonly FIELD_INDEX_NAME_HANDLE = "IndexNameHandle"; static readonly FIELDS_DEFAULT: string[]; static readonly FIELDS_ALL: string[]; static listFromApi(apiObjects: ILogicalView[]): ReadableLogicalView[]; readonly Description: string; readonly Index: string; readonly SubIndexNames: string[]; readonly ReportHandle: string; readonly IndexNameHandle: string; readonly Number: number; readonly ViewId: string; readonly Default: boolean; constructor(apiObject: ILogicalView); }