import { type PropsWithChildren } from 'react';
import type { EntryEditor } from '../atoms/EntryEditorAtoms.js';
export declare function useEntryEditor(): EntryEditor | undefined;
export interface EntryEditorProviderProps {
    editor: EntryEditor;
}
export declare function EntryEditorProvider({ children, editor }: PropsWithChildren<EntryEditorProviderProps>): import("react/jsx-runtime").JSX.Element;
