import React, { FC } from 'react'; import { CommonControlProps } from '../../types'; declare type ButtonType = 'primary' | 'secondary' | 'link' | 'ghost'; export interface ButtonProps extends CommonControlProps { type?: ButtonType; block?: boolean; square?: boolean; small?: boolean; onClick?: (event: React.MouseEvent) => void; } declare const Button: FC; export default Button;