import React from 'react'; import { Props as SpaceProps } from '../space'; export interface Props extends SpaceProps { /** * 金额,单位:分 */ price?: number; /** * 小数位长度 * @default 2 */ len?: number; /** * 粗体 */ bold?: boolean; /** * 前缀大字体 */ bigPrefix?: boolean; /** * 小数位大字体 */ bigDecimal?: boolean; /** * 字体放大比例 * @default 1.53 */ bigScale?: number; /** * 大字体类名 */ bigCls?: string; /** * 整数类名 */ integerCls?: string; /** * 小数类名 */ decimalCls?: string; } declare const _default: ({ price, className, len, bigPrefix, bigDecimal, integerCls, decimalCls, bigScale, bigCls, ...props }: Props) => React.JSX.Element; export default _default;