import { Monaco, MonacoEditor } from '../utils/types-helper'; import { MaybeRef } from '@vueuse/core'; import { File } from '../../core'; export interface UseMonacoModelsOptions { projectId: MaybeRef; files: MaybeRef; monaco: Monaco; getEditor: () => MonacoEditor.IStandaloneCodeEditor | undefined; editorUpdateId: MaybeRef; isSetup: MaybeRef; } export declare function useMonacoModels(options: UseMonacoModelsOptions): { getModels: () => MonacoEditor.ITextModel[] | null; modelUpdateId: import("vue").Ref; };