type __VLS_Props = { /** * 设置按钮类型;primary, text, normal */ type?: 'primary' | 'normal' | string; /** 是否禁用状态 */ disabled?: boolean; /** 原生的 type 属性 */ htmlType?: 'button' | 'submit' | 'reset'; /** 按钮是否适合其父宽度(宽度100%) */ block?: boolean; /** 是否是圆形按钮 */ circle?: boolean; /** 是否是弧形按钮 */ round?: boolean; /** 加载的时候显示的文本 */ loadingText?: string; /** 是否处于加载状态 */ loading?: boolean; /** 背景是否透明 */ ghost?: boolean; /** 自定义按钮颜色 */ color?: string; /** 文本按钮 */ text?: boolean; }; declare var __VLS_5: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_5) => any; }; declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, { circle: boolean; text: boolean; type: "primary" | "normal" | string; disabled: boolean; htmlType: "button" | "submit" | "reset"; block: boolean; round: boolean; loadingText: string; loading: boolean; ghost: boolean; color: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };