import { ReactNode } from 'react'; interface INotificationBubbleProps { readonly color?: string; readonly onTimeout?: () => void; readonly children?: ReactNode; } declare const NotificationBubble: ({ color, onTimeout, children, ...props }: INotificationBubbleProps) => JSX.Element; export default NotificationBubble;