import * as React from 'react'; import AssistedSearchStore from './stores/AssistedSearchStore'; import { MouseEvent } from 'react'; import { Nullable } from './types'; export interface ContainerProps { children?: any; className?: string; focused?: boolean; onClick?: (e: MouseEvent) => any; store: AssistedSearchStore; getDropdownEl: () => Nullable; [key: string]: any; } /** * The main container and entry point. */ export default class Container extends React.Component { private el?; private _setRef; onBlur: () => void; private _click; render(): JSX.Element; }