import { Store } from '@ngrx/store'; import { Selector } from '@ngrx/store/src/models'; import { OperatorFunction } from 'rxjs'; import { FeatureAction } from '../types/store/feature-action.type'; export declare abstract class MinaBaseEffect, State> { protected store: Store; private selector; protected readonly latestActionState: () => OperatorFunction; protected readonly latestStateSlice: (path: string) => OperatorFunction; protected constructor(store: Store, selector: Selector); }