import * as react_jsx_runtime from 'react/jsx-runtime'; /** * PipelineAlerts — WealthX DS * * Compact card showing opportunity counts broken down by priority level * (High / Medium / Low). Displayed alongside the PipelineChart in the * Loan CRM page header section. * * Data source: derived from pipeline board columns by counting opportunity * priorities across all stages. */ interface PipelineAlertCounts { high: number; medium: number; low: number; } interface PipelineAlertsProps { counts: PipelineAlertCounts; className?: string; } declare function PipelineAlerts({ counts, className }: PipelineAlertsProps): react_jsx_runtime.JSX.Element; export { type PipelineAlertCounts, PipelineAlerts, type PipelineAlertsProps };