import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface StatisticValueProps extends ComposableProps<'div'> {
/**
* Value text
*/
children: React.ReactNode;
}
/**
* StatisticValue Component
*
* A composable component for the value of a statistic.
* Typically used within Statistic.
*
* @public
*
* @example
* ```tsx
*