import { Address } from 'viem'; import { ChainId } from '../chain'; export declare const getIdFromChainIdAddress: (chainId: string | number, address: Address) => string; export declare const getChainIdAddressFromId: (id: string) => { chainId: ChainId; address: `0x${string}`; };