import { type ReactNode } from 'react'; declare const showFormModal: ({ title, onConfirm, content, width, }: { width?: number | string; /** * 通常是一个 Form,或一个提供 onFinish 属性的组件 * 方法内部会监听 onFinish 返回数据 */ content: ReactNode; title: string; onConfirm: (v: T) => void; }) => void; export { showFormModal };