import { LocalState } from '../state/step-evaluation-state'; import { ActionReducerMap, MemoizedSelector } from '@ngrx/store'; import { Dictionary } from '@ngrx/entity/src/models'; import { EvaluationHistoryListItem } from '../models/evaluation-history-item'; export interface stepEvaluationModuleState { stepEvaluation: LocalState; } export interface State { stepEvaluation: stepEvaluationModuleState; } export declare const reducers: ActionReducerMap; export interface DetailsState { stepEvaluation: LocalState; } export declare const getstepEvaluationListState: MemoizedSelector; export declare const getstepEvaluationListEntitiesState: MemoizedSelector; export declare const getstepEvaluationListLoading: MemoizedSelector; export declare const getstepEvaluationListErrorMessages: MemoizedSelector; export declare const getCanInitiatestepEvaluation: MemoizedSelector; export declare const getEmploymentDeclaration: MemoizedSelector; export declare const getstepEvaluationListIds: (state: DetailsState) => string[] | number[], getstepEvaluationListEntities: (state: DetailsState) => Dictionary, getAllstepEvaluationList: (state: DetailsState) => EvaluationHistoryListItem[];