import * as react from 'react';
import { HTMLAttributes } from 'react';
import { IncidentSeverity } from './incident-card.js';
interface AlertItem {
id: string;
title: string;
severity: IncidentSeverity;
timestamp: string;
description?: string;
service?: string;
acknowledged?: boolean;
}
interface AlertInboxProps extends HTMLAttributes {
alerts: AlertItem[];
filterSeverity?: IncidentSeverity | '';
onAcknowledge?: (id: string) => void;
loading?: boolean;
emptyMessage?: string;
}
declare const AlertInbox: react.ForwardRefExoticComponent>;
export { AlertInbox, type AlertInboxProps, type AlertItem };