import { AnyAction } from 'redux';
export declare const getSuccessAction: <TResult = any>(type: string) => ({ tx_id, result, args }: {
    tx_id: string;
    result: TResult;
    args?: any;
}) => AnyAction;
