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