/** * Resolves the Monaco editor CSS stylesheet as an absolute URL. * * In library builds, Vite inlines this as a `data:` URL so consumers do not * need any additional asset configuration. The resulting URL is used by the * `cssInjection: 'link'` option of {@link MonacoEditorInput} to lazily * inject the stylesheet via a `` element. * * @module */ declare const cssHref: string; /** Absolute URL pointing to the Monaco editor CSS stylesheet. */ export default cssHref;