import { BlockNoteEditor, BlockNoteEditorOptions, CustomBlockNoteSchema, DefaultBlockSchema, DefaultInlineContentSchema, DefaultStyleSchema } from "@blocknote/core"; import { DependencyList } from "react"; /** * Hook to instantiate a BlockNote Editor instance in React */ export declare const useCreateBlockNote: > | undefined>(options?: Options, deps?: DependencyList) => Options extends { schema: CustomBlockNoteSchema; } ? BlockNoteEditor : BlockNoteEditor;