import type { ChainId } from "@coin-voyage/shared/types"; interface TokenChainLogoProps extends React.DetailedHTMLProps, HTMLImageElement> { chainId: ChainId; } export default function TokenChainLogo({ chainId, ...props }: TokenChainLogoProps): import("react/jsx-runtime").JSX.Element; export {};