import { Actions } from '@ngrx/effects'; import { Action, Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import { NgrxManagerService } from './ngrx-manager.service'; export declare class NgrxManagerEffects { private actions$; private store; private ngrxManagerService; queryQueueNextAction$: Observable; commandQueueNextAction$: Observable; startSyncAction$: Observable; stopSyncAction$: Observable; sendQueryStackRequestAction$: Observable; sendQueryQueueRequestAction$: Observable; sendQueryFailedRequestAction$: Observable; sendCommandStackRequestAction$: Observable; sendCommandQueueRequestAction$: Observable; sendCommandFailedRequestAction$: Observable; constructor(actions$: Actions, store: Store, ngrxManagerService: NgrxManagerService); }