import { EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export interface RankedListItem { rank: number; label: string; value: number; secondaryLabel?: string; icon?: string; trend?: 'up' | 'down' | 'neutral'; } export declare class WidgetRankedListComponent { items: RankedListItem[]; maxItems: number; showBar: boolean; itemClick: EventEmitter; get displayItems(): RankedListItem[]; private get maxValue(); barWidth(value: number): number; formatValue(value: number): string; trackByRank(_index: number, item: RankedListItem): number; onItemClick(item: RankedListItem): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }