import React, { CSSProperties, ReactNode } from 'react'; import './Button.less'; interface IButtonProps { children?: ReactNode; danger?: boolean; disabled?: boolean; icon?: ReactNode; showText?: boolean; ghost?: boolean; loading?: boolean; content?: string; shape?: 'default' | 'cicle' | 'round'; size?: 'large' | 'middle' | 'small'; iconSize?: string; type?: 'primary' | 'dashed' | 'link' | 'text' | 'default'; direction?: 'horizontal' | 'vertical'; className?: string; iconClassName?: string; isMobile?: boolean; style?: CSSProperties; isStopPropagation?: boolean; onClick?: (event?: any) => void; } declare const Button: React.ForwardRefExoticComponent>; export default Button;