import { ModelRef } from 'vue'; /** * emits */ export interface Emits { (event: 'click', e: MouseEvent): void; } /** * props */ export interface Props { /** * 自定义大小 */ size?: string; /** * 自定义激活颜色 */ activeColor?: string; /** * 自定义未激活颜色 */ inactiveColor?: string; /** * 异步状态 */ async?: boolean; /** * 禁用状态 */ disabled?: boolean; } /** * useHandler */ export declare namespace USEHandler { interface Option { props: Readonly>; emit: Emits; isActived: ModelRef; } }