import { Action } from '@ngrx/store';
import { EntityForUpdate } from '../services/update-entity.service';
export declare const entityManagementFeatureKey = "entityManagement";
export interface EntityManagementState {
    entityForUpdate: EntityForUpdate | undefined;
    backgroundUpdateProcesses: number;
    isEditStatusesDialogOpened: boolean;
}
export declare const initialState: EntityManagementState;
export declare function reducer(state: EntityManagementState | undefined, action: Action): EntityManagementState;
