import type { Option } from '../types/generic'; export declare function useOptions(props: any): { options: globalThis.Ref; getOptionLabel: (option: T) => string; getOptionValue: (option: T) => any; isOptionDisabled: (option: T) => boolean; getOptionGrouped: (option: T) => T[]; };