import { ActionReducerMap } from '@ngrx/store'; export declare function comments(state: any[], { type, payload }: any): any; export declare function loading(state: boolean, { type, payload }: any): any; export interface State { comments: any; loading: boolean; } export declare const reducers: ActionReducerMap;