import React from "react"; import { BackdropProps } from "./interface"; import "./styles/index.css"; /** * 蒙版组件用于特定元素或其部分的强调。 * * * ### 引用方法 * ```tsx * import { Backdrop } from "@atomintl/exchange-ui" * ``` */ declare const Backdrop: React.FC; export { BackdropProps } from "./interface"; export default Backdrop;