import { ReactElement } from 'react'; import { CommonProps } from '../common'; export interface StatisticProps extends CommonProps { /** * Alignment between title and content. */ align?: 'left' | 'right'; /** * Text color of the content. */ intent?: 'text' | 'white' | 'inherit'; /** * The prefix element of value. */ prefix?: string | ReactElement; /** * The suffix element of value. */ suffix?: string | ReactElement; /** * Title of Statistic. */ title: string; /** * Value to be displayed. */ value: string | ReactElement; } declare const Statistic: ({ align, intent, suffix, prefix, title, value, id, className, style, sx, "data-test-id": dataTestId, }: StatisticProps) => ReactElement; export default Statistic;