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