import type { UniqueIdentifier } from '@dnd-kit/core';
export interface DragDropContextType {
    activeId: UniqueIdentifier | null;
    overId: UniqueIdentifier | null;
    isDragging: boolean;
}
export declare const DragDropContext: import("react").Context<DragDropContextType | null>;
export declare const useDragDropContext: () => DragDropContextType;
//# sourceMappingURL=DragDropContext.d.ts.map