import React, { FC } from 'react'; interface StatTypes extends React.HTMLAttributes { label?: string; color?: string; number?: string; helperText?: any; helperTextColor?: "default" | "positive" | "negative" | "muted"; chart?: any; icon?: React.ReactNode; variant?: "default" | "plain" | "contained" | "outlined" | "brutalist" | "dropshadow"; width?: "full" | "min" | "normal"; isLoading?: boolean; className?: string; clickable?: boolean; } declare const Stats: FC; export { Stats };