import { ActionReducer } from '@ngrx/store';
import * as CommentActions from './../actions/comment.actions';
import { CommentState } from './../states/comment.state';
export declare type Action = CommentActions.All;
export declare const CommentReducer: ActionReducer<CommentState>;