import * as React from 'react'; import type { ValidCoinTypes } from '../../hoc/CashtabBase'; type Props = { price?: string; symbol: string; coinType?: ValidCoinTypes; preSymbol?: string; name?: string; }; declare class PriceDisplay extends React.PureComponent { render(): JSX.Element; } export default PriceDisplay;