import type { IOptionProps } from './token';
export declare function useOption(props: IOptionProps, { emit }: {
    emit: any;
}): {
    hoverItem: () => void;
    selectOptionClick: () => void;
};
