import { EventHookOn } from '@vueuse/core'; import { MonacoEditor } from '../utils/types-helper'; interface EventHookOnParam { id: string; editor?: MonacoEditor.IStandaloneCodeEditor; } /** * Provides a global store of all the monaco editors in the page. */ export declare function useEditors(): { editors: Record; addEditor: (editor: MonacoEditor.IStandaloneCodeEditor) => () => void; onEditorCreated: EventHookOn; onEditorDestroyed: EventHookOn; }; export {};