export declare const HTTP_FAILURE = "HTTP_FAILURE";
export interface HttpFailureAction {
    type: 'HTTP_FAILURE';
    error: any;
}
export declare type HttpAction = HttpFailureAction;
export declare const httpFailure: (error: any) => {
    error: any;
    type: string;
};
