import * as Actions from '../actions';
import { AllocationModel } from '@lml/cosmo-ts-data';
export interface AllocationTagState {
    byJobId: {
        [jobRefId: string]: AllocationModel;
    };
}
export declare const initialAllocationTagState: AllocationTagState;
export declare const allocationTagReducer: (state: AllocationTagState, action: Actions.AllocationTagAction) => AllocationTagState;
