import { ActionReducer } from '@ngrx/store';
import { EventState } from '../states/event.state';
import * as EventActions from './../actions/event.action';
export declare type Action = EventActions.All;
export declare const EventReducer: ActionReducer<EventState>;