/** * Token configuration and utilities * * Resolves token addresses and decimals for the configured chain. */ import { type SupportedToken } from './local-config'; export type Network = 'mainnet' | 'testnet'; export declare function getTokenAddress(network: Network, token: SupportedToken, chainId?: number): string; export declare function getTokenDecimals(network: Network, token: SupportedToken, chainId?: number): number;