import type { FC, ReactElement, ReactNode } from 'react'; declare enum NotificationState { Warning = "warning", Error = "error", Info = "info", Success = "success" } export interface CardNotificationProps { /** Content card notification */ children?: ReactNode | string; /** Overwrite className */ className?: string; /** Determines whether the card can be dismissed */ dismissible?: boolean; /** Extra content to be displayed below the main content of the card */ extraContent?: ReactNode; /** Outlined variant */ outlined?: boolean; /** State or variant of the notification */ state: `${NotificationState}`; /** Title of the notification */ title: ReactElement | string; } declare const CardNotification: FC; export default CardNotification;