import { type Ref, type ExtractPropTypes } from 'vue'; import type { SelectOption } from '../types'; export declare const useAutocompleteProps: { autocomplete: { type: BooleanConstructor; default: boolean; }; }; type UseAutocompleteProps = ExtractPropTypes & { multiple: boolean; }; export declare const useAutocomplete: (autocompleteValue: Ref, props: UseAutocompleteProps, value: Ref, dropdownShown: Ref, getText: (option: SelectOption) => string) => Ref; export {};