import { Ref } from 'vue'; export declare function useAutocomplete(autocomplete: Ref, computedOptions: Ref<{ id: string; value: any; }[]>, getOptionLabel: (option: any) => string, inputLabel: Ref, isOpen: Ref): { autocompleteText: Ref; filteredOptions: Ref<{ id: string; value: any; }[], { id: string; value: any; }[]>; updateAutocompleteText: (text: string) => void; };