import { Address } from 'viem'; import { ChainId } from './vault-config.mjs'; import 'viem/chains'; import '../vaults/config.mjs'; type AllowanceProps = { tokenAddress: Address; spenderAddress: Address; userAddress: Address; chainId: ChainId; }; declare function getVaultAllowance({ tokenAddress, spenderAddress, userAddress, chainId, }: AllowanceProps): Promise; type TotalSupplyProps = { tokenAddress: Address; chainId: ChainId; }; declare function getTotalSupply({ tokenAddress, chainId, }: TotalSupplyProps): Promise; export { getTotalSupply, getVaultAllowance };