/// import React from 'react'; import tsProps from './PropsType'; declare class Button extends React.Component { static defaultProps: { prefixCls: string; size: string; inline: boolean; across: boolean; disabled: boolean; loading: boolean; activeStyle: {}; }; render(): JSX.Element; } export default Button;