export type TokenInfo = { name: string; symbol: string; address: string; icon: string; }; export type SupportedTokens = Record; /** * Default tokens shown in [`ConnectWallet`](https://portal.thirdweb.com/react/v4/components/ConnectWallet)'s SendFunds screen for each network. * * You can use the default tokens as a starting point for your own list of tokens and override tokens for specific networks. * * @example * Below example shows adding a custom token for the Ethereum mainnet at start of the list of default tokens for the Ethereum mainnet. Here the `1` represents the chainId of Ethereum mainnet. * * ```tsx * const ethereumChainId = 1; * * * ``` */ export declare const defaultTokens: SupportedTokens; //# sourceMappingURL=defaultTokens.d.ts.map