import * as i0 from "@angular/core"; export type TrendDirection = 'up' | 'down' | 'neutral'; /** * Counter widget - displays a large KPI value with optional trend indicator * Designed for dashboard metrics like "Total Alerts", "Open Cases", etc. */ export declare class WidgetCounterComponent { value: number; label: string; unit?: string; trend?: string; trendDirection: TrendDirection; context?: string; format: 'number' | 'abbreviated' | 'percentage'; /** * Formats the counter value based on the specified format */ protected readonly formattedValue: import("@angular/core").Signal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }