import React from "react"; import { Theme, ThemeFontVariant, ThemeIntent } from "../types"; export declare type CtPriceProps = { price: number | string; currency?: string; fontVariant?: ThemeFontVariant; intent?: ThemeIntent; theme?: Theme; size?: "small" | "medium" | "large"; style?: React.CSSProperties; className?: string; fontType?: "heading" | "body"; label?: string; }; declare function CtPrice({ price, currency, fontVariant, intent, theme, size, style, className, fontType, label, }: CtPriceProps): JSX.Element | null; declare namespace CtPrice { var defaultProps: { currency: string; theme: Theme; fontVariant: ThemeFontVariant; intent: ThemeIntent; size: string; fontType: string; label: string; }; } export default CtPrice;