import { AppBaseAction } from './actions/app-base-action'; import { AppActionDispatcher } from './actions/app-action-dispatcher'; import { Store } from '@ngrx/store'; export declare class NgrxStoreLibService { store: Store; appActionDispatch: AppActionDispatcher; constructor(store: Store, appActionDispatch: AppActionDispatcher); dispatchAction(action: AppBaseAction): void; }