import { Observable } from 'rxjs'; import { EntityAdapter } from '@ngrx/entity'; import { IBaseEntityState } from './ibase-entity-state'; export declare class StoreStateFactory { private baseEntityAdapter; private baseInitialState; private store; CreateEntityAdapter(): EntityAdapter; GetEntityAdapter(): EntityAdapter; GetEntityInitialState(): IBaseEntityState; getState(): Observable; selectedEntityId: (state: IBaseEntityState) => any; selectIsLoading: (state: IBaseEntityState) => boolean; selectError: (state: IBaseEntityState) => any; }