import { AvalancheAssets, EthereumAssets } from '../contexts/models.js'; import { Blockchain, CriticalConfig, BitcoinConfigAssets, Assets } from '../types/config.js'; /** * Return the assets available for the given chain * @param blockchain The blockchain to get asset dict for * @param config The config of the bridge */ declare function getAssets(blockchain: Blockchain.AVALANCHE, config: CriticalConfig): AvalancheAssets; declare function getAssets(blockchain: Blockchain.BITCOIN, config: CriticalConfig): BitcoinConfigAssets; declare function getAssets(blockchain: Blockchain.ETHEREUM, config: CriticalConfig): EthereumAssets; declare function getAssets(blockchain: Blockchain, config: CriticalConfig): Assets; export { getAssets };