/** * Created by kisnows on 2016/9/8. */ import * as React from 'react'; import BasePropTypes from './PropTypes'; export interface ButtonProps extends BasePropTypes { className?: string; } export default class Button extends React.Component { static defaultProps: { disabled: boolean; role: string; type: string; size: string; style: string; children: string; }; render(): JSX.Element; }