import { AnyAction } from 'redux';
export declare const getErrorAction: <TError = any>(type: string) => ({ tx_id, error }: {
    tx_id: string;
    error: TError;
}) => AnyAction;
