import * as workEnvironmentActions from '../actions/work-environment.actions'; import { LocalState } from '../state/work-environment.state'; export declare function reducer(state: LocalState, action: workEnvironmentActions.WorkEnvironmentActions): LocalState; export declare const getLoadingWorkEnvironment: (state: LocalState) => boolean; export declare const getErrors: (state: LocalState) => string[]; export declare const getSelectedWorkEnvironmentId: (state: LocalState) => string; export declare const getShowWorkEnvironmentValidations: (state: LocalState) => boolean;