interface Props {
    price: number | string;
    salesPrice?: number | string;
    installments?: number;
    className?: string;
}
declare const PriceShow: ({ price, salesPrice, installments, className, }: Props) => import("react/jsx-runtime").JSX.Element;
export default PriceShow;
