import React from "react"; import type { ButtonProps } from "antd/es/button"; import "./index.less"; export type { ButtonSize, ButtonShape, ButtonType, ButtonHTMLType } from "antd/es/button"; export interface Props extends ButtonProps { loading?: boolean; } export declare const Button: ({ className, loading, ...rest }: Props) => React.JSX.Element;