import React from 'react'; import './index.less'; interface IProps { value: string | number; isMini?: boolean; className?: string; style?: React.CSSProperties; prefix?: React.ReactElement; suffix?: React.ReactElement; customPrefixText?: string; customSuffixText?: string; } declare const index: (props: IProps) => React.JSX.Element; export default index;