import type { PriceProps } from './types'; /** * Цена товара с указанием знака валюты. * @param props Параметры компонента. * @return Элемент. */ export declare function Price({ className, currencyGrapheme: grapheme, graphemeBefore, crossedOut, value, 'data-testid': testId, }: PriceProps): import("react").JSX.Element;