import { IComboboxSearchProps } from './ComboboxSearch'; import * as React from 'react'; interface IComboboxSearchAjaxProps extends IComboboxSearchProps { cache?: number; url?: string; lazy?: boolean; callback?: Function; cachekey?: string; } export declare class ComboboxSearchAjax extends React.Component { constructor(props: any); static defaultProps: { cache: any; }; private mounted; componentWillReceiveProps(nextProps: any): void; componentDidMount(): void; componentWillUnmount(): void; ajaxFetch(): Promise; __ajaxFetch(): Promise; onPropsChanged(): Promise; onPrepage(): Promise; render(): JSX.Element; } export {};