import { ReactNode } from 'react'; import { IViewProps } from '../View'; export declare const sendSuccess: (message: string) => void; export declare const sendWarning: (message: string) => void; export declare const sendInfo: (message: string) => void; interface INotificationBubbleManager { readonly renderBubble?: ({ key, onTimeout, children, }: { key: number; onTimeout: () => void; children: string; }) => ReactNode; } declare const NotificationBubbleManager: ({ children, renderBubble, ...props }: INotificationBubbleManager & IViewProps) => JSX.Element; export default NotificationBubbleManager;