import { EntityAdapter, EntityState } from '@ngrx/entity'; import { VentureEdWorkListItemModel } from '../models/venture-ed-work-list-item.model'; export interface MMAPLocalState extends EntityState { loadingMMAPWorkList: boolean; errors: string[]; } export declare const mmapAdapter: EntityAdapter; export declare const initialState: MMAPLocalState;