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 * * 100 * Users * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. */ export declare const StatisticValue: React.ForwardRefExoticComponent>; //# sourceMappingURL=StatisticValue.d.ts.map