import { default as React } from 'react'; export type PriceProps = { variant?: 'default' | 'purple'; withDivider?: boolean; textAbovePrice?: string; textBelowPrice?: string; pricePrefix?: string; pricePrefixFaded?: boolean; priceSuffix?: string; priceText: string; className?: string; }; /** The stock status for the product */ export declare const Price: React.ForwardRefExoticComponent>;