Version: 0.0.00.1.00.1.10.1.20.1.30.1.40.1.50.1.60.1.70.1.80.1.90.2.00.2.10.3.00.3.10.3.20.4.00.4.10.4.20.5.00.5.10.6.00.6.10.6.20.6.30.6.40.7.00.8.00.8.10.8.20.9.00.9.10.9.20.9.30.9.40.9.50.9.60.9.70.9.81.0.0-alpha1.0.0-alpha.11.0.0-alpha.21.0.0-beta.01.0.0-rc1.0.01.1.01.1.11.1.21.1.31.1.41.1.51.1.61.1.71.1.82.0.02.0.12.0.22.1.02.1.12.1.22.1.32.1.42.2.02.2.32.2.42.3.02.4.02.5.12.5.22.5.32.5.42.6.03.0.03.0.13.0.24.0.04.0.24.0.34.0.44.0.55.0.06.0.07.0.07.0.17.0.27.1.07.2.07.2.17.3.07.3.17.3.27.4.07.4.17.4.27.4.37.4.47.4.57.5.07.6.07.6.17.7.08.0.08.0.28.0.39.0.09.0.19.1.09.2.19.3.19.3.29.3.49.4.09.5.09.5.110.0.010.0.110.0.211.0.011.1.011.1.111.1.312.0.013.0.013.0.113.1.013.1.114.0.014.0.114.0.214.0.314.0.414.0.515.0.015.0.115.0.215.1.015.1.115.1.216.0.016.0.1
/// <reference types="react" />
import type { DragDropManager } from 'dnd-core';
/**
* The React context type
*/
export interface DndContextType {
dragDropManager: DragDropManager | undefined;
}
* Create the React Context
export declare const DndContext: import("react").Context<DndContextType>;