import { SlotStatusList } from '../models/slot-status-list.model'; import { EntityAdapter, EntityState } from '@ngrx/entity'; export interface SlotStatusListState extends EntityState { selectedSlotStatusListId: number; loadingSlotStatusList: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialSlotStatusListDetailsState: SlotStatusListState;