import { DraggingAction, DragType } from '../../allocation/actions';
export interface DraggingState {
    drag: {
        refId: string | null;
        type: DragType;
    };
    drop: {
        refId: string | null;
        type: DragType;
        count: number;
    };
}
export declare const initialDraggingState: DraggingState;
export declare const draggingReducer: (state: DraggingState, action: DraggingAction) => DraggingState;
