export interface TokenType { chainId: string; address: string; symbol: string; decimals: number; name: string; } interface UniswapTokenType extends Omit { chainId: number; logoURI: string; extensions: { bridgeInfo: { '1': { tokenAddress: string; }; }; }; } export declare class Tokens { static aaveGoerliErc20: TokenType[]; static aaveMainnetErc20: TokenType[]; static uniswapDefaultErc20: UniswapTokenType[]; } export {};