import * as react_jsx_runtime from 'react/jsx-runtime'; interface AlertSummaryDataPoint { /** ISO date string e.g. "2024-01-01" */ date: string; /** Count of Need Action alerts */ needAction: number; /** Count of Watch alerts */ watch: number; /** Count of Insight alerts */ insight: number; } type AlertSummaryPeriod = 3 | 6 | 12; interface BackofficeAlertsChartProps { chartData?: AlertSummaryDataPoint[] | null; title?: string; showLegend?: boolean; legendPosition?: "top" | "bottom"; showXAxis?: boolean; showYAxis?: boolean; defaultPeriod?: AlertSummaryPeriod; height?: number; width?: number | string; className?: string; isLoading?: boolean; } declare function BackofficeAlertsChart({ chartData, title, showLegend, legendPosition, showXAxis, showYAxis, defaultPeriod, height, width, className, isLoading, }: BackofficeAlertsChartProps): react_jsx_runtime.JSX.Element; export { type AlertSummaryDataPoint, type AlertSummaryPeriod, BackofficeAlertsChart, type BackofficeAlertsChartProps };