import { HttpFailureAction } from '../../common/actions/http';
export interface HttpState {
    errors: any[];
    offline: boolean;
}
export declare const httpReducer: (state: HttpState, action: HttpFailureAction) => HttpState;
