import { AutocompleteItem } from './MyAutocompleteTypes'; interface UseLoadOnInputInputProps { inputValue?: string; reloadDelay?: number; reloadExcludeRegex?: string; setSuggestions: (suggestions: AutocompleteItem[]) => void; asyncLoadItems?: (inputValue?: string) => Promise; applyChangedValueAndValueLabel: () => void; } interface UseLoadOnInputProps { suggestionsLoading: boolean; filterOptions: (options: AutocompleteItem[], state: { inputValue: string; }) => AutocompleteItem[]; } declare const useLoadOnInput: ({ inputValue, reloadDelay, reloadExcludeRegex, asyncLoadItems, setSuggestions, applyChangedValueAndValueLabel, }: UseLoadOnInputInputProps) => UseLoadOnInputProps; export default useLoadOnInput;