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