import type { Editor } from "@tiptap/react"; type UniqueIdentifier = string | number; interface UseEditorDndProps { items: { Sidebar: string[]; Editor: UniqueIdentifier[]; }; setItems: React.Dispatch>; editor?: Editor | null; } export declare const useEditorDnd: ({ setItems, editor }: UseEditorDndProps) => { activeId: UniqueIdentifier | null; activeDragType: string | null; onDragStartHandler: () => void; onDragEndHandler: () => void; onDragMoveHandler: () => void; onDragCancelHandler: () => void; lastPlaceholderIndex: number | null; cleanupPlaceholder: () => void; sensors: undefined; measuringProps: undefined; collisionDetectionStrategy: undefined; }; export {};