import { Notification, NotificationTypes } from '../../core'; interface NotificationDrawerProps { notificationTypes?: NotificationTypes[]; isOpen: boolean; onClose: () => void; onNotificationClick?: (notification: Notification) => void; } export declare const NotificationDrawer: (({ notificationTypes, isOpen, onClose, onNotificationClick }: NotificationDrawerProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export {};