import React from 'react'; import './index.scss'; declare type ButtonType = 'primary' | 'secondary' | 'normal'; declare type ButtonSize = 'super' | 'big' | 'middle' | 'small'; interface ButtonProps { size?: ButtonSize; type?: ButtonType; disable?: boolean; disabled?: boolean; loading?: boolean; preIcon?: JSX.Element; suffixIcon?: JSX.Element; extraCls?: string; ref?: any; onClick?: (e: any) => void; } declare const Button: React.FunctionComponent; export default Button;