import { SxProps } from '@mui/material'; export interface StatisticsCardProps { color?: string; sxStyles?: SxProps; state?: "Positive" | "Neutral" | "Pending" | "Negative" | "SecondaryInfo"; title: string; hint?: string; percentage?: number; number: number; }