import { default as React, ReactNode } from 'react'; /** * Modal 组件的属性接口 */ interface ModalProps { /** 是否显示弹窗 */ open: boolean; /** 弹窗标题 */ title: string; /** 弹窗宽度 */ width?: number | string; /** 关闭回调 */ onCancel?: () => void; /** 底部内容 */ footer?: ReactNode | null; /** 自定义类名 */ className?: string; /** 弹窗内容 */ children?: ReactNode; } /** * 自定义 Modal 组件 * 使用 Portal 渲染到 body,实现模态对话框 */ declare const CustomModal: React.FC; export default CustomModal;