import { SxProps } from '@mui/material/styles'; interface MicroWidgetContainerProps { className?: string; ctaLabel: string; onCTAClick: () => void; subHeader?: string; sx?: SxProps; title: string; variant?: 'borderless' | 'card'; } declare const MicroWidgetContainer: React.FC>; export default MicroWidgetContainer;