/// import { SxProps } from '@mui/material'; import { StatCardType } from '../../../components/molecules/StatCard/StatCard.types'; import { Theme } from '../../../theme/muiTheme'; export interface StatCardsSectionProps { label?: string; title?: string | JSX.Element; cards: StatCardType[]; sx?: SxProps; } declare const StatCardsSection: ({ label, title, cards, sx, }: StatCardsSectionProps) => JSX.Element; export { StatCardsSection };