import { EntityAdapter, EntityState } from '@ngrx/entity'; import { Sort } from '@angular/material/sort'; import { PageEvent } from '@angular/material/paginator'; import { EducationTesting } from '../models/tier-III/education/education-testing/education-testing'; export interface LocalState extends EntityState { sort: Sort; page: PageEvent; loadingEducationTesting: boolean; selectedEducationTestingId: number; showEducationTestingValidations: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;