import type { Editor } from '../externals.js'; import { UmbContextBase } from '../../../libs/class-api/index.js'; import type { UmbControllerHost } from '../../../libs/controller-api/index.js'; export declare class UmbTiptapRteContext extends UmbContextBase { #private; stylesheetRootPath: import("rxjs").Observable; constructor(host: UmbControllerHost); /** * Resolves a configured stylesheet path to an href on the Umbraco server. * @param {string} stylesheet The configured stylesheet path, relative to the stylesheet root path. * @returns {string} The href to use for the stylesheet link. */ resolveStylesheetHref(stylesheet: string): string; getEditor(): Editor | undefined; setEditor(editor?: Editor): void; }