import './index.less'; type OpenIframeInsertDialogOptions = { onConfirm: (src: string) => void; onCancel?: () => void; initialValue?: string; }; /** * 统一管理 Iframe 插入弹框的校验与确认逻辑,便于常用菜单和 Slash 菜单复用。 */ export declare const openIframeInsertDialog: (options: OpenIframeInsertDialogOptions) => { destroy: () => void; update: (configUpdate: import("antd").ModalFuncProps | ((prevConfig: import("antd").ModalFuncProps) => import("antd").ModalFuncProps)) => void; }; export default openIframeInsertDialog;