import { EditorPluginClass } from '../utils/plugin/EditorPlugin'; /** * * @returns 业务组件详情管理 */ declare const useBusinessCompData: ({ editorPluginInst }: { editorPluginInst: EditorPluginClass; }) => { businessCompDetailMap: { get(key: string): any; getAsync: (key: string, isRefresh?: boolean) => Promise; }; changeTriggerByWindowIsActive: (windowIsActive: boolean) => void; }; export default useBusinessCompData;