import type { EditorCommands } from './editorCommandsType'; import type { TiptapAdapter } from './tiptap'; export type { TiptapEditor } from './tiptap'; export interface IRicosEditor { getEditorCommands(): EditorCommands; readonly adapter: TiptapAdapter; } export interface EditorEventSource { publishLoaded(): boolean; publishFirstEdit(): boolean; publishError(error: any, errorInfo: any): boolean; publishContentSaved(): boolean; } //# sourceMappingURL=editor.d.ts.map