import { ReactElement } from 'react'; import { StatValueProps } from './Stat.interface'; declare const StatValue: { ({ ref, children, className, dataTheme, ...props }: StatValueProps): ReactElement; displayName: string; }; export default StatValue;