import { EntityAdapter, EntityState } from '@ngrx/entity'; import { NCPEvaluationWorkListModel } from '../models/evaluation-worklist-model'; export interface NcpEValuationAddLocalState extends EntityState { selectedNcpEValuationId: number; loadingNcpEValuation: boolean; errors: string[]; } export declare const NcpEValuationAddAdapter: EntityAdapter; export declare const NcpEValuationAddInitialState: NcpEValuationAddLocalState;