import { EntityAdapter, EntityState } from '@ngrx/entity'; import { CompletionSurvey } from '../models/completion-survey/completion-survey'; export interface LocalState extends EntityState { loadingCompletionSurvey: boolean; showCompletionSurveyValidations: boolean; selectedCompletionSurveyId: number; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;