export declare class TooltipModel { isSelected: boolean; label: string; id: number; value: string; constructor(obj: string, id: number); } export declare class TooltipModelForColumnLevelFiltering { isHidden: boolean; isSelected: boolean; data: string; constructor(data: string); } export declare class RadioButtonModel { key: string; label: string; isSortRequired: boolean; isFilterRequired: boolean; showSplitedOptions?: boolean; splitDelimiter?: string; constructor(key: string, value: string, sort: boolean, filter: boolean, showSplitedOptions?: boolean, splitDelimiter?: string); } export declare enum AllSelectedStatus { none = 0, allSelected = 1, fewSelected = 2 }