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