export type ButtonType = "primary" | "success" | "warning" | "danger" | "info" | "text"; export type ButtonSize = "medium" | "small" | "mini"; type __VLS_Props = { type?: ButtonType; size?: ButtonSize; icon?: string; nativeType?: "button" | "submit" | "reset"; loading?: boolean; disabled?: boolean; /** * 是否朴素按钮 */ plain?: boolean; autofocus?: boolean; round?: boolean; /** * 是否圆形按钮 */ circle?: boolean; }; declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { click: (event: MouseEvent) => void; }, string, Readonly>>, {}>; declare const _default: __VLS_WithSlots; export default _default; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType[K]>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithSlots = T & { new (): { $scopedSlots: S; }; };