import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
import { IComponentBase } from '@syncfusion/ej2-angular-base';
import { ComboBox } from '@syncfusion/ej2-dropdowns';
import * as i0 from "@angular/core";
export declare const inputs: string[];
export declare const outputs: string[];
export declare const twoWays: string[];
/**
*The ComboBox component allows the user to type a value or choose an option from the list of predefined options.
*```html
*
*```
*/
export declare class ComboBoxComponent extends ComboBox implements IComponentBase {
private ngEle;
private srenderer;
private viewContainerRef;
private injector;
private cdr;
formCompContext: any;
formContext: any;
tagObjects: any;
actionBegin: any;
actionComplete: any;
actionFailure: any;
beforeOpen: any;
blur: any;
change: any;
close: any;
created: any;
customValueSpecifier: any;
dataBound: any;
destroyed: any;
filtering: any;
focus: any;
open: any;
resizeStart: any;
resizeStop: any;
resizing: any;
select: any;
valueChange: any;
/**
* Accepts the template design and assigns it to the footer container of the popup list.
* > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.
* @default null
* @asptype string
* @deprecated
*/
footerTemplate: any;
/**
* Accepts the template design and assigns it to the header container of the popup list.
* > For more details about the available template options refer to [`Template`](../../drop-down-list/templates) documentation.
* @default null
* @asptype string
* @deprecated
*/
headerTemplate: any;
/**
* Accepts the template design and assigns it to the group headers present in the popup list.
* @default null
* @asptype string
* @deprecated
*/
groupTemplate: any;
/**
* Accepts the template design and assigns it to each list item present in the popup.
* We have built-in `template engine`
*
* which provides options to compile template string into a executable function.
*For EX: We have expression evolution as like ES6 expression string literals.
*
* @default null
* @asptype string
* @deprecated
*/
itemTemplate: any;
/**
* Accepts the template design and assigns it to popup list of component
* when no data is available on the component.
* @default 'No records found'
* @asptype string
* @deprecated
*/
noRecordsTemplate: any;
/**
* Accepts the template and assigns it to the popup list content of the component
* when the data fetch request from the remote server fails.
* @default 'Request failed'
* @asptype string
* @deprecated
*/
actionFailureTemplate: any;
private skipFromEvent;
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
registerOnChange(registerFunction: (_: any) => void): void;
registerOnTouched(registerFunction: () => void): void;
writeValue(value: any): void;
setDisabledState(disabled: boolean): void;
ngOnInit(): void;
ngAfterViewInit(): void;
ngOnDestroy(): void;
ngAfterContentChecked(): void;
registerEvents: (eventList: string[]) => void;
addTwoWay: (propList: string[]) => void;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}