import React, { FC } from 'react';

interface StatTypes extends React.HTMLAttributes<HTMLDivElement> {
    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<StatTypes>;

export { Stats };
