/// export interface Notification { id: number; type: "info" | "danger" | "success"; message?: string; aliveFor?: number; keepAlive?: boolean; children?: any; } export interface Props { notifications: Notification[]; onClose?: (...args: any[]) => any; } declare const Notifications: ({ notifications, onClose }: Props) => JSX.Element; export default Notifications;