import React, { JSX } from "react";
import { ImageSourcePropType } from "react-native";
import { CryptoIconProps } from "./types";
export declare const getCryptoIconSource: (symbol: string) => ImageSourcePropType;
export declare const getSupportedSymbols: () => string[];
declare const CryptoIcon: React.MemoExoticComponent<({ symbol, size, style, resizeMode, accessibilityLabel, }: CryptoIconProps) => JSX.Element>;
export { CryptoIcon, CryptoIconProps };
