You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
351 B

export declare function useOption(props: any, states: any): {
select: import("./token").SelectContext | undefined;
currentLabel: import("vue").ComputedRef<any>;
currentValue: import("vue").ComputedRef<any>;
itemSelected: import("vue").ComputedRef<boolean>;
isDisabled: import("vue").ComputedRef<any>;
hoverItem: () => void;
};