import type { Editor } from '@tiptap/core'; interface EditorContextValue { addImage: (image: File, imageId?: string, alt?: string, actionUrl?: string) => void; editor: Editor | null; } declare const EditorContext: import("react").Context; export declare const useEditorContext: () => EditorContextValue; export default EditorContext; //# sourceMappingURL=Editor.context.d.ts.map