import React, { SVGProps } from 'react'; type TOptions = { title?: React.ReactNode; value?: React.ReactNode; icon?: (props: SVGProps) => JSX.Element; change?: React.ReactNode; previousStat?: React.ReactNode; action?: React.ReactNode; changeType?: 'increase' | 'decrease'; }; interface IStatsProps { className?: string; title?: string; options?: TOptions[]; grouped?: boolean; } declare const Stats: React.FC; export default Stats; export type { TOptions as TStatsOptions }; //# sourceMappingURL=index.d.ts.map