/// import { ButtonProps as AntdButtonProps } from 'antd/lib/button'; declare type ButtonProps = AntdButtonProps & { /** * 测试使用 */ test?: string; }; declare function Button(props: ButtonProps): JSX.Element; export default Button;