import { EntityAdapter, EntityState } from '@ngrx/entity'; import { StatusList } from '../models/site-status-list.model'; export interface StatusState extends EntityState { selectedStatusId: number; loadingStatus: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialStatusDetailsState: StatusState;