/**
 * Original work Copyright (c) 2022 Signum Network
 */
import { ChainService } from '../../../service';
import { GetTradeHistoryPerAccountArgs } from '../../../typings/args';
import { TradeHistory } from '../../../typings/tradeHistory';
/**
 * Use with {@link ApiComposer} and belongs to {@link AssetApi}.
 *
 * See details at {@link AssetApi.getAssetTransfersPerAccount}
*
* @category factories
*/
export declare const getTradeHistoryPerAccount: (service: ChainService) => (args: GetTradeHistoryPerAccountArgs) => Promise<TradeHistory>;
