import React from 'react';
import { AutocompleteProps } from './Autocomplete.types';
/**
 * Autocomplete input; Downshift wrapped around our Input component but with the capability to
 * accept a list of suggestions which are presented to the user as they type and which they can
 * click on to select. If viewing in Storybook, try typing the name of a fruit in the story examples.
 */
declare const Autocomplete: React.FunctionComponent<AutocompleteProps>;
export default Autocomplete;
