import { Ref } from 'vue'; export declare function useSelectOption(inputValue: Ref, computedOptions: Ref<{ id: string; value: any; }[]>, getOptionLabel: (option: any) => string, getOptionValue: (option: any) => any, multiple: Ref, closeOptions: () => void, autocomplete: Ref, autocompleteText: Ref, focusOnInput: () => void): { selectOption: (option: any) => void; selectAllOptions: () => void; isSelectedOption: (option: any) => boolean; isAllSelected: import('vue').ComputedRef; removeSelected: (option: any) => void; selectedOptions: import('vue').ComputedRef; };