export declare class SelectItem { id: string; text: string; children: Array; parent: SelectItem; constructor(source: any); fillChildrenHash(optionsMap: Map, startIndex: number): number; hasChildren(): boolean; getSimilar(): SelectItem; }