import { PipeTransform } from '@angular/core'; import { Store } from '@ngrx/store'; import { NGRXAction } from '../action.utils'; export declare class DispatchPipe implements PipeTransform { private store; private actions; constructor(store: Store, actions: any); transform(payload: any, actionSource?: NGRXAction): any; }