///
import { Price, Currency } from "@uniswap/sdk-core";
interface TradePriceProps {
price: Price;
showInverted: boolean;
setShowInverted: (showInverted: boolean) => void;
fontSize?: number;
fontWeight?: number;
}
export default function TradePrice({ price, showInverted, setShowInverted, fontSize, fontWeight, }: TradePriceProps): JSX.Element;
export {};