import { AppState } from './app.reducer'; import { Observable } from 'rxjs'; import { Store } from '@ngrx/store'; export declare class StoreSelectors { store: Store; constructor(store: Store); getAll(selectAll: any): Observable; getIsLoading(isLoading: any): Observable; getError(error: any): Observable; findById(selectAll: any, record: { id; }): any; getCurrentSelected(selectAll: any, selectCurrentId: any): Observable<(entities: any, selectedId: any) => any>; }