type __VLS_Props = { /** Accepts shadcn variants + v1 compat aliases (text/solid/outlined/filled) */ variant?: string; /** Accepts shadcn sizes + v1 compat aliases (small/mini/large) */ size?: string; disabled?: boolean; /** v1 兼容快捷 prop:语义化颜色,优先级低于 variant */ color?: "primary" | "success" | "warning" | "danger" | "info" | "default"; /** 加载中状态:显示 spinner + 自动 disabled */ loading?: boolean; /** v1 compat: alias for loading */ isLoading?: boolean; /** 如果有值,渲染为链接按钮 */ href?: string; /** v1 兼容:激活态 */ isActive?: boolean; /** v1 兼容:子激活态 */ isSubActive?: boolean; }; declare var __VLS_14: {}, __VLS_20: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_14) => any; } & { default?: (props: typeof __VLS_20) => any; }; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { click: (e: MouseEvent) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onClick?: ((e: MouseEvent) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithSlots; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };