import React from 'react'; export type NotificationLevel = 'Success' | 'Warn' | 'Error' | 'Info'; declare const Notification: React.FC<{ content: string; level: NotificationLevel; }>; export declare function showNotification(content: string, level?: NotificationLevel): void; export declare function showNotification1(content: React.JSX.Element): void; export default Notification;