import { JSX } from "react";
import { CryptoIconProps } from "./types";
/**
 * CryptoIcon component to display cryptocurrency icons.
 *
 * @param {CryptoIconProps} props - Properties for the CryptoIcon component.
 * @returns {JSX.Element} The rendered CryptoIcon component.
 */
declare const CryptoIcon: ({ symbol, size, style, originSize, }: CryptoIconProps) => JSX.Element;
export { CryptoIcon, CryptoIconProps };
