import { ActionReducer } from '@ngrx/store';
import * as UserActions from './../actions/user.actions';
import { UserState } from '../states/user.state';
export declare type Action = UserActions.All;
export declare const UserReducer: ActionReducer<UserState>;