import * as React from 'react'; import '@vtmn/css-price/dist/index-with-vars.css'; import { VtmnPriceVariant, VtmnPriceSize } from './types'; export interface VtmnPriceProps extends React.ComponentPropsWithoutRef<'span'> { /** * The variant of the price. * @defaultValue 'default' */ variant?: VtmnPriceVariant; /** * The size of the price. * @defaultValue 'medium' */ size?: VtmnPriceSize; /** * No padding on the price. * @defaultValue false */ noPadding?: boolean; /** * The content to render inside the component. * @defaultValue undefined */ children?: React.ReactNode; } export declare const VtmnPrice: React.ForwardRefExoticComponent>; declare const MemoVtmnPrice: React.MemoExoticComponent>>; export default MemoVtmnPrice;