import { Action } from './actions'; export declare const FEATURE = "NGRX_REQUESTS"; export interface State { [key: string]: NgrxRequest; } export declare enum NgrxRequestStatus { IDLE = "IDLE", CANCELED = "CANCELED", WORKING = "WORKING", ERROR = "ERROR", SUCCESS = "SUCCESS" } export declare type NgrxRequestMeta = any; export interface NgrxRequest { status: NgrxRequestStatus; meta?: NgrxRequestMeta; } export declare function reducer(state: State, action: Action): State;