import type { ButtonProps } from 'antd'; import React from 'react'; declare type PropType = { onClick?: (e: React.MouseEvent) => void; width?: number | string; ref?: any; } & ButtonProps; declare const Button: React.FC; export default Button;