export const DISPLAY_NAME: "Container(Typeahead)";
export const DEFAULT_STATE: any;
/**
 * The Typeahead React container
 */
export default class Typeahead extends RComponent<any, any, any> {
    static displayName: string;
    static propTypes: any;
    constructor(props: any);
    onToggle(): void;
    onKeyDown(event: any, data: any): void;
    onBlur(event: any): void;
    onSelect(event: any, value: any): void;
    render(): import("react/jsx-runtime").JSX.Element;
}
import { Component as RComponent } from 'react';
