/** * Resolves the ProseMirror 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 ProseMirrorMarkdownInput} to * lazily inject the stylesheet via a `` element. * * @module */ declare const cssHref: string; /** Absolute URL pointing to the ProseMirror editor CSS stylesheet. */ export default cssHref;