/// interface Props { data: any; open: boolean; onClose: () => void; right: number; } declare function NotificationDetailPanel({ data, open, onClose, right }: Props): JSX.Element; export default NotificationDetailPanel;