import { SelectItem } from './SelectItem'; export declare class SelectList { selectList: SelectItem[]; constructor(selectList?: any[]); addSelectItem(selectItem: any): this; removeSelectItem(selectItem: any): this; setSelectItems(selectItems: SelectItem[]): this; removeAllSelectItems(): this; getSelectListModel(): SelectItem[]; toJSON(): { EntityType: string; PropertyName: string; DataType: string; GroupFunction: string; Direction: string; Format: string; }[]; getSelectListValue(): { EntityType: string; PropertyName: string; DataType: string; GroupFunction: string; Direction: string; Format: string; }[]; } export declare function createSelectList(selectList: any): SelectList;