///
import { DragSourceOptions, DragPreviewOptions } from '../interfaces';
export declare type ConnectableElement = React.RefObject | React.ReactElement | Element | null;
export declare type DragElementWrapper = (elementOrNode: ConnectableElement, options?: Options) => React.ReactElement | null;
export declare type ConnectDragSource = DragElementWrapper;
export declare type ConnectDragPreview = DragElementWrapper;
export declare type ConnectDropTarget = DragElementWrapper;