import type * as monaco from 'monaco-types'; import type * as lsp from 'vscode-languageserver-protocol'; /** * Convert a Monaco editor marker data to an LSP diagnostic. * * @param markerData * The Monaco marker data to convert. * @returns * The marker data as an LSP diagnostic. */ export declare function fromMarkerData(markerData: monaco.editor.IMarkerData): lsp.Diagnostic; /** * Convert an LSP diagnostic to a Monaco editor marker data. * * @param diagnostic * The LSP diagnostic to convert. * @returns * The diagnostic as Monaco editor marker data. */ export declare function toMarkerData(diagnostic: lsp.Diagnostic): monaco.editor.IMarkerData; //# sourceMappingURL=markerData.d.ts.map