import * as React from 'react'; import AssistedSearchStore from './stores/AssistedSearchStore'; import { Input } from './stores/ComponentStores'; export interface AssistedInputProps { input: Input; store: AssistedSearchStore; [key: string]: any; } /** * Represents the main input for searching, and it's container, along with the entries that precede it. */ export default class AssistedInput extends React.Component { private el?; private handleChange; componentDidMount(): void; componentDidUpdate(): void; private _checkFocus; private onFocus; private _setEl; render(): JSX.Element; }