import { Ref } from 'vue'; export declare function useInputOption(inputValue: Ref, options: Ref, optionLabel: Ref, optionValue: Ref, multiple?: Ref): { getOptionLabel: (option: any) => string; getOptionValue: (option: any) => any; };