import type { ExtractPropTypes, PropType } from 'vue'; import type { SizeType } from '../config-provider'; export declare type ButtonType = 'link' | 'default' | 'primary' | 'ghost' | 'dashed' | 'text' | 'secondary'; export declare type ButtonShape = 'default' | 'circle' | 'round'; export declare type ButtonHTMLType = 'submit' | 'button' | 'reset'; export declare type LegacyButtonType = ButtonType | 'danger'; export declare function convertLegacyProps(type?: LegacyButtonType): ButtonProps; export declare const buttonProps: () => { prefixCls: StringConstructor; type: PropType; htmlType: { type: PropType; default: string; }; shape: { type: PropType; }; size: { type: PropType; }; loading: { type: PropType; default: () => boolean | Partial<{ delay: number; dotted: boolean; }>; }; disabled: { type: BooleanConstructor; default: any; }; ghost: { type: BooleanConstructor; default: any; }; block: { type: BooleanConstructor; default: any; }; danger: { type: BooleanConstructor; default: any; }; icon: import("vue-types").VueTypeValidableDef; href: StringConstructor; target: StringConstructor; title: StringConstructor; onClick: { type: PropType<(event: MouseEvent) => void>; }; onMousedown: { type: PropType<(event: MouseEvent) => void>; }; minWidth: StringConstructor; }; export declare type ButtonProps = Partial>>; export default buttonProps;