import React from 'react'; interface DragContainerProps { children?: React.ReactNode; } interface IDrag { state?: React.DragEvent['type']; } export declare const DragContext: React.Context<{ drag: IDrag; setDrag: Function; }>; declare const DragContainer: (props: DragContainerProps) => JSX.Element; export default DragContainer;