import React from "react"; import { type RemoteLogoProps } from "./remote-logo"; export type ERC20TokenLogoProps = { chainId: number; address: string; symbol?: string; } & RemoteLogoProps; export declare const ERC20TokenLogo: ({ chainId, address, symbol, ...rest }: ERC20TokenLogoProps) => React.JSX.Element; //# sourceMappingURL=erc20-token-logo.d.ts.map