import React from 'react'; export interface ButtonProps { type?: 'primary' | 'ghost' | 'link' | 'textLink'; size?: 'normal' | 'small' | 'smallest' | 'middle'; fixedWidth?: 'short' | 'long' | 'auto'; disabled?: boolean; title?: string; source?: string; inline?: boolean; hasIcon?: boolean; icon?: React.ReactNode | string; activeColor?: string; pressInColor?: string; isRadius?: boolean; borderRadius?: number; buttonHeight?: string; height?: string; buttonWidth?: string; width?: string; buttonStyle?: React.CSSProperties; href?: string; onClick?: () => void; className?: React.CSSProperties; loading?: boolean; activeClassName?: string; activeStyle?: boolean | React.CSSProperties; pressBorder?: string; }