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