import type { UseAutocompleteProps, UseAutocompleteReturnValue, CreateFilterOptionsConfig } from './useAutocomplete.types'; export declare function createFilterOptions(config?: CreateFilterOptionsConfig): (options: any[], { inputValue, getOptionLabel }: { inputValue: string; getOptionLabel: (option: Value) => string; }) => any[]; declare function useAutocomplete(props: UseAutocompleteProps): UseAutocompleteReturnValue; export { useAutocomplete };