import { ActionReducer } from '@ngrx/store';
import * as WorkItemActions from './../actions/work-item.actions';
import { WorkItemState } from './../states/work-item.state';
export declare type Action = WorkItemActions.All;
export declare const WorkItemReducer: ActionReducer<WorkItemState>;