import React, { FC, ReactNode } from "react"; export declare type ButtonType = "default" | "primary" | "info" | "success" | "warning" | "danger"; export declare type ButtonSize = "large" | "normal" | "small"; export declare type ButtonShape = "square" | "round"; interface ButtonProps { className: string; color: string; shape: ButtonShape; plain: boolean; loading: boolean; disabled: boolean /**设置 Button 的禁用 */; style: React.CSSProperties; type: ButtonType /**设置 Button 的类型 */; size: ButtonSize /**设置 Button 的尺寸 */; block: boolean; icon: string; children: ReactNode; onClick: (e: MouseEvent) => void; } declare const Button: FC>; export default Button;