import type { DefineComponent } from 'vue' interface Props { /** 类型 */ type?: "common" | "glass" /** 按钮点击事件 */ onClick?: () => void /** 悬停提示 */ title?: string } type Slots = { default?: () => any } declare const _default: DefineComponent & { new (): { $slots: Slots } } export default _default