import React, { FC } from 'react'; export type IModal = { /** 控制Modal的开关 */ visible: boolean; /** 用户点击确定的回调函数 */ onOk?: () => void; /** 用户点击关闭的回调函数 */ onCancel?: () => void; /** Modal的内容 */ children: React.ReactNode; /** Modal的标题 */ title?: string; /** Modal的footer,默认是确认取消按钮 */ footer?: React.ReactNode; /** footer 内容的对齐 */ footerAlign?: 'left' | 'center' | 'right'; /** Modal宽度 */ width?: number; className?: string; style?: React.CSSProperties; }; declare const Modal: FC; export { Modal };