import type { Editor } from "@tiptap/react"; import { type VisibleBlockItem } from "../store"; type UniqueIdentifier = string | number; interface UseSyncEditorItemsProps { setItems: React.Dispatch>; rafId: React.MutableRefObject; editor?: Editor | null; } export declare const useSyncEditorItems: ({ setItems, rafId, editor }: UseSyncEditorItemsProps) => { syncEditorItems: (editor: Editor) => () => void; }; export {};