/** * @copyright NIIT Technologies Ltd. 2017-18. */ import { NgZone, ElementRef, Renderer } from '@angular/core'; import { ControlComponent } from '../../core/component/control.component'; /** * Drop Down List */ export declare class NgcDropDownListComponent extends ControlComponent { private ngZone; private elementRef; private rendererRef; autoOpen: any; autoDropDownHeight: any; animationType: any; checkboxes: any; closeDelay: any; displayMember: any; dropDownHorizontalAlignment: any; dropDownVerticalAlignment: any; dropDownHeight: any; dropDownWidth: any; enableSelection: any; enableBrowserBoundsDetection: any; enableHover: any; filterable: any; filterHeight: any; filterDelay: any; filterPlaceHolder: any; incrementalSearch: any; incrementalSearchDelay: any; itemHeight: any; openDelay: any; placeHolder: any; popupZIndex: any; rtl: any; renderer: any; selectionRenderer: any; searchMode: any; scrollBarSize: any; source: any; selectedIndex: any; theme: any; template: any; valueMember: any; width: any; height: any; autoCreate: boolean; /** * Initialize */ constructor(ngZone: NgZone, elementRef: ElementRef, rendererRef: Renderer); /** * On Select * * @param Event */ listOnSelect($e: any): void; /** * On Unselect * * @param Event */ listOnUnselect($e: any): void; } /** * Drop Down List Module */ export declare class NgcDropDownListModule { }