import { type ReactNode } from 'react'; type ContentNotificationType = 'error' | 'warning' | 'info'; type ContentNotificationProps = { type?: ContentNotificationType; children?: ReactNode; }; declare const ContentNotifications: { Info: (props: ContentNotificationProps) => import("@emotion/react/jsx-runtime").JSX.Element; Error: (props: ContentNotificationProps) => import("@emotion/react/jsx-runtime").JSX.Element; Warning: (props: ContentNotificationProps) => import("@emotion/react/jsx-runtime").JSX.Element; }; export default ContentNotifications;