import React, { ElementType, FC } from 'react'; import { BoxProps, TypographyProps } from '@mui/material'; export interface NotificationCenterCategoryProps extends BoxProps { /** * Title of the notification */ title: React.ReactNode; /** * Custom props for the header */ headerProps?: BoxProps; /** * Custom props for the title */ titleProps?: TypographyProps; /** * Custom props for the container */ containerProps?: BoxProps; } /** * Component that renders a category in the Notification Center */ export declare const NotificationCenterCategory: FC;