/** * @description Button * * @date 创建时间 2022/6/17 12:01 * @author ryan.li */ import { FC } from "react"; import type { ButtonProps } from "./interface"; import "./styles/index.css"; /** * 按钮是一种命令组件,可发起一个即时操作。 * * ### 引用方法 * ```tsx * import { Button } from "@atomintl/exchange-ui" * ``` */ export declare const Button: FC; export { ButtonProps } from "./interface"; export default Button;