UNPKG

311 BTypeScriptView Raw
1/// <reference types="react" />
2import type { DragDropManager } from 'dnd-core';
3/**
4 * The React context type
5 */
6export interface DndContextType {
7 dragDropManager: DragDropManager | undefined;
8}
9/**
10 * Create the React Context
11 */
12export declare const DndContext: import("react").Context<DndContextType>;