import type { BasicType } from '../../_utils'; import type { PropType, ExtractPropTypes } from 'vue'; import type { HandleMouse, VmIcon } from '../../_interface'; export declare const Props: { /** 自定义尺寸 */ readonly size: BasicType, string | number | null>; /** 是否为圆角的 */ readonly round: BasicType; /** 是否禁用 */ readonly disabled: BasicType; /** 自定义颜色 */ readonly color: BasicType, string | null>; /** 鼠标移入的颜色 */ readonly hoverColor: BasicType, string | null>; /** 自定义 icon */ readonly icon: BasicType, null>; /** 点击之后执行的回调 */ readonly onClick: BasicType, null>; }; /** close-btn 组件 props 类型 */ export type CloseBtnProps = ExtractPropTypes;