import * as React from "react"; export type NotificationItem = { id: string; title: React.ReactNode; description?: React.ReactNode; time?: React.ReactNode; read?: boolean; group?: React.ReactNode; }; export type NotificationCenterProps = React.ComponentProps<"div"> & { notifications: NotificationItem[]; onMarkAllRead?: () => void; onClearAll?: () => void; onNotificationClick?: (notification: NotificationItem) => void; emptyLabel?: React.ReactNode; title?: React.ReactNode; }; declare function NotificationCenter({ notifications, onMarkAllRead, onClearAll, onNotificationClick, emptyLabel, title, className, ...props }: NotificationCenterProps): React.JSX.Element; export { NotificationCenter };