To access the component's public methods, add a ref to your typeahead instance and access the ref from a given handler:
<div>
<Typeahead
...
ref={(typeahead) => this.typeahead = typeahead}
/>
<button onClick={() => this.typeahead.getInstance().clear()}>
Clear Typeahead
</button>
</div>Note that you must use getInstance to get the typeahead instance.
Provides a programmatic way to blur the input.
Provides a programmatic way to reset the component. Calling the method will clear both text and selection(s).
Provides a programmatic way to focus the input.
Provides access to the component's input node.