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