import type * as monaco from 'monaco-editor'; type MaybePromise = T | Promise; export type Path = readonly (string | number)[]; export type EditorModel = { model: monaco.editor.ITextModel; getRangeFromPath: (path: Path) => MaybePromise; }; export {}; //# sourceMappingURL=model.d.ts.map