import { FC } from 'react'; export interface PriceProps { amount: string; original?: string; } declare const Price: FC; export default Price;