import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface StatisticProps extends ComposableProps<'div'> { /** * Label placement relative to value * @default "Below" */ labelPlacement?: "Below" | "Top"; /** * Statistic content (for composable API) */ children?: React.ReactNode; } /** * Statistic Component * * A composable component for displaying statistics with labels and values. * * @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 Statistic: React.ForwardRefExoticComponent>; //# sourceMappingURL=Statistic.d.ts.map