import * as React from 'react'; export interface IComboboxSearchProps { value?: any; display?: any; placeHolder?: string; listData?: any[]; fieldLabel?: string; fieldValue?: string; onPrepaging?: Function; onChange?: Function; } export declare class ComboboxSearch extends React.Component { timeoutBlur: any; constructor(props: any); private node; private ref_content; private mounted; static defaultProps: { listData: any[]; fieldValue: string; fieldLabel: string; }; componentDidMount(): void; componentWillUnmount(): void; handleOnDebounce(): void; determineDropUp(): void; onFocus(e: any): void; onBlur(e: any): void; onChange(e: any): void; onClickItem(item: any): void; render(): JSX.Element; renderInput(): JSX.Element; renderSuggestList(): JSX.Element; }