import { CurrencyType } from './CurrencyType'; import { FC } from 'react'; declare type Props = { icon: CurrencyType; type?: 'theme' | 'color' | 'white' | 'dark'; className?: string; }; export declare const CurrencyIcon: FC; export {};