import { LexicalEditor } from 'lexical'; import { ReactNode } from 'react'; interface ContextValue { editor: LexicalEditor | null; setEditor: (editor: LexicalEditor | null) => void; } export declare const EditorHolderContext: import("react").Context; export declare function useEditorHolder(): ContextValue | null; export declare function EditorHolderProvider({ children }: { children: ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useEditor(): LexicalEditor | null; export {};