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