/**
 * Modified work Copyright (c) 2019 Burst Apps Team
 */
import { ChainService } from '../../../service/chainService';
import { Asset } from '../../../typings/asset';
import { GetAssetArgs } from '../../../typings/args';
/**
 * Use with {@link ApiComposer} and belongs to {@link AssetApi}.
 *
 * See details at {@link AssetApi.getAsset}
 *
 * @category factories
 * */
export declare const getAsset: (service: ChainService) => (args: GetAssetArgs) => Promise<Asset>;
