northants-design-system
Version:
Design system for West & North Northamptonshire Councils, two unitary councils encompassing Wellingborough, Corby, Daventry, East Northants, Kettering, Northampton, Northamptonshire County and South Northants.
10 lines (9 loc) • 487 B
TypeScript
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;