export interface AutocompleteProps { inputId?: string; style?: any; value?: string; onChange?: (e: any) => any; onSelect?: (value: any) => any; } declare function Autocomplete(props: AutocompleteProps): JSX.Element; export default Autocomplete;