import { EntityAdapter, EntityState } from '@ngrx/entity'; import { TabeScore } from '../../models/education/tabe-score/tabe-score'; export interface LocalState extends EntityState { loadingTabeScore: boolean; selectedTabeScoreId: number; showTabeScoreValidations: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;