import type { OptionProps, OptionStates } from './type'; export declare function useOption(props: OptionProps, states: OptionStates): { select: any; currentLabel: any; currentValue: any; itemSelected: any; isDisabled: any; hoverItem: () => void; updateOption: (query: string) => void; };