/**
 * Original work Copyright (c) 2023 Signum Network
 */
import { ChainService } from '../../../service/chainService';
import { CalculateDistributionFeeArgs } from '../../../typings/args/calculateDistributionFeeArgs';
import { DistributionFee } from '../../../typings/distributionFee';
/**
 * Use with {@link ApiComposer} and belongs to {@link AssetApi}.
 *
 * See details at {@link AssetApi.calculateDistributionFee}
 * @see also {@link AssetApi.distributeToAssetHolders}
 *
*
* @category factories
*/
export declare const calculateDistributionFee: (service: ChainService) => (args: CalculateDistributionFeeArgs) => Promise<DistributionFee>;
