import { SxProps } from '@mui/material'; import { Theme } from '../../../theme/muiTheme'; import { StatCardType } from './StatCard.types'; declare type Props = { sx?: SxProps; } & StatCardType; declare const StatCard: ({ label, stat, description, image, sx }: Props) => JSX.Element; export { StatCard };