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