import * as react from 'react';
import { HTMLAttributes } from 'react';
type IncidentSeverity = 'critical' | 'high' | 'medium' | 'low' | 'info';
interface IncidentCardProps extends HTMLAttributes {
/** Incident title */
title: string;
/** Severity level */
severity: IncidentSeverity;
/** Timestamp string */
timestamp: string;
/** Description / detail */
description?: string;
/** Service name affected */
service?: string;
/** Whether acknowledged */
acknowledged?: boolean;
/** Whether the card is loading */
loading?: boolean;
}
declare const IncidentCard: react.ForwardRefExoticComponent>;
export { IncidentCard, type IncidentCardProps, type IncidentSeverity };