import { type IAlertNotification, type IScheduleNotification } from "@gooddata/sdk-model"; /** * @internal */ export interface INotificationsProps { notification: IAlertNotification | IScheduleNotification; markNotificationAsRead: (id: string) => void; onNotificationClick?: (notification: IAlertNotification | IScheduleNotification) => void; closeNotificationsPanel: () => void; } /** * @internal */ export declare function Notification({ notification, markNotificationAsRead, onNotificationClick, closeNotificationsPanel }: INotificationsProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Notification.d.ts.map