import { BlockNoteDefaultUIProps } from "./BlockNoteDefaultUI.js"; export type BlockNoteViewContextValue = { editorProps: { autoFocus?: boolean; contentEditableProps?: Record; editable?: boolean; }; defaultUIProps: BlockNoteDefaultUIProps; }; export declare const BlockNoteViewContext: import("react").Context; export declare function useBlockNoteViewContext(): BlockNoteViewContextValue | undefined;