import { default as React } from 'react'; import { SxProps } from '@mui/material/styles'; interface CardContainerProps { className?: string; closeLabel?: string; contentStyles?: SxProps; onClose?: () => void; onPrimaryCtaClick?: () => void; primaryCtaLabel?: string; primaryCtaLabelAria?: string; subTitle?: string; sx?: SxProps; title?: string; /** * Accessible name for the widget region when no visible `title` is rendered. * When `title` is present, the region is labelled by the title text instead. */ titleAria?: string; /** * Extra summary read after the title when the screen-reader cursor lands on * the region (e.g. "$240 left in budgets"). Appended to the region's * accessible name via a visually-hidden node so it is announced but not shown. */ summaryAria?: string; } declare const MiniWidgetContainer: React.FC>; export default MiniWidgetContainer;