import { InjectionToken } from '@angular/core'; import { type Editor } from '@tiptap/core'; import { type Observable, ReplaySubject } from 'rxjs'; /** * Token for Tiptap Editor */ export declare const TIPTAP_EDITOR: InjectionToken>; /** * Lazy loaded Editor */ export declare const LAZY_TIPTAP_EDITOR: InjectionToken>; /** * The container in which the tip-tap editor is initialized */ export declare const INITIALIZATION_TIPTAP_CONTAINER: InjectionToken;