/** * Wrapper for beautiful-dnd library * * @author Denis Makarov * @date 2020-03-09 */ import * as React from 'react'; import { DragDropContextProps as DndContextProps, DraggableProps as DndDraggableProps, DroppableProps as DndDroppableProps, DropResult as DndDDropResult, DroppableProvided as DndDroppableProvided, DraggableProvided as DndDraggableProvided, DroppableStateSnapshot as DndDroppableSnapshot, DraggableStateSnapshot as DndDraggableSnapshot } from 'react-beautiful-dnd'; export declare type DragDropContextProps = DndContextProps; export declare type DroppableProps = DndDroppableProps; export declare type DroppableProvided = DndDroppableProvided; export declare type DraggableProvided = DndDraggableProvided; export declare type DraggableStateSnapshot = DndDraggableSnapshot; export declare type DroppableStateSnapshot = DndDroppableSnapshot; export declare type DraggableProps = DndDraggableProps; export declare type DropResult = DndDDropResult; export declare class DragDropContext extends React.Component { render(): JSX.Element; } export declare class Droppable extends React.Component { render(): JSX.Element; } export declare class Draggable extends React.Component { render(): JSX.Element; }