import type { EditorStoreInstance, EditorStoreState } from "./editorStore"; export declare const EditorStoreContext: import("react").Context; /** Hook to read from the nearest EditorStoreProvider. */ export declare function useEditorStore(selector: (state: EditorStoreState) => T): T;