import { OnInit, OnChanges, SimpleChanges, EventEmitter, ViewContainerRef, TemplateRef, ElementRef } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { GridConfigInterface } from '../../../models/grid-config.interface'; import { Overlay } from '@angular/cdk/overlay'; import { GridComponent } from '../grid/grid.component'; import * as i0 from "@angular/core"; declare enum SelectSizes { SMALL = "small", NORMAL = "normal", LARGE = "large" } export declare class TreeSelectComponent implements OnInit, ControlValueAccessor, OnChanges { viewContainerRef: ViewContainerRef; private overlay; data: Array; _value: any; id: string; placeholder: string; bindLabel: string; bindValue: string; bindItems: string; width: string; size: SelectSizes | string; iconUrl: string; hasError: boolean; showTreeValueColumn?: boolean; readonly: string; disabled: boolean; allowClear: boolean; spinnerIsShow?: boolean; remoteConfig: (params: any, success: any, failure: any) => void; onChangeCalback: EventEmitter; openCallback: EventEmitter; closeCallback: EventEmitter; gridConfig: GridConfigInterface; treeMenuIsShow?: boolean; treeIsFocus?: boolean; treeDepth: number; treePathLevel: string[] | string; selectedTreePath: string[]; private overlayRef; treeSelectMenuTemplateRef: TemplateRef; treeSelectElementRef: ElementRef; treeInputElement: ElementRef; gridComponent: GridComponent; constructor(viewContainerRef: ViewContainerRef, overlay: Overlay); get SelectSizes(): typeof SelectSizes; get value(): any; set value(val: any); onChangeFn: (_: any) => void; onTouchedFn: () => void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; writeValue(val: any): void; setDisabledState(isDisabled: boolean): void; onChange(): void; change(val: any): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnChanges(changes: SimpleChanges): void; gridSelectHandler: (item: any) => void; openTreeMenu(): void; closeTreeMenu(): void; treeInputElementKeyupHandler(event: any): void; clearTreeSelectedValue(e: Event): void; private updateSelectedTreePath; private createTreeMenuOverlay; private getArrayDepth; private findTreeItemPath; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};