/** * @author linhd * @date 2022/8/10 10:32 AM * @description 全局弹窗-自定义用的 */ import { FunctionComponent, ReactNode } from 'react'; export interface ProtalBoxProps { className?: string; /** 定位元素 */ anchorEl?: any; /** 关闭事件 */ onClose?: () => void; children?: ReactNode; [name: string]: any; } export declare const Protal: FunctionComponent; export default Protal;