import { EntityAdapter, EntityState } from '@ngrx/entity'; import { School } from '../models/school.model'; export interface SchoolDetailsState extends EntityState { selectedSchoolId: number; loadingSchool: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialSchoolDetailsState: SchoolDetailsState;