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