import { IIndexValue } from "../../api"; export declare class ReadableIndexValue { static readonly FIELD_REPORT_HANDLE = "ReportHandle"; static readonly FIELDS_DEFAULT: string[]; static readonly FIELDS_ALL: string[]; static listFromApi(apiObjects: IIndexValue[]): ReadableIndexValue[]; readonly ReportHandle: string; readonly Value: string; readonly SubValues: string[]; constructor(apiObject: IIndexValue); }