import { AnyAction } from 'redux';
import { DraggingState } from './dragging';
import { AllocationTagState } from './tags';
export * from './dragging';
export * from './tags';
export interface AllocationState {
    dragging: DraggingState;
    tags: AllocationTagState;
}
export declare const allocationReducer: (state: {}, action: AnyAction) => {};
