import { EntityAdapter, EntityState } from '@ngrx/entity'; import { SupervisorWorkListItem } from '../models/supervisor-worklist-item'; export interface LocalState extends EntityState { loading: boolean; errors: string[]; } export declare const adapter: EntityAdapter; export declare const initialState: LocalState;