import { OnInit, EventEmitter, OnChanges } from '@angular/core'; import { ButtonComponentConfig } from '../button/button.model'; import { LabelConfig } from '../label/label.model'; import { TitleComponentConfig } from '../title/title.component'; import * as i0 from "@angular/core"; export declare class MetricCardComponentConfig { icon: ButtonComponentConfig; redirect?: ButtonComponentConfig; title: TitleComponentConfig; metrics: Metric[]; } declare class Metric { label: LabelConfig; value: number | string; formattedValue?: string; valueSuffix?: LabelConfig; color: string; type?: "euro"; decimalCases?: number; } export declare class MetricCardComponent implements OnInit, OnChanges { config: MetricCardComponentConfig; onOpen: EventEmitter; constructor(); ngOnInit(): void; ngOnChanges(): void; getMetricValue(metric: Metric): string; open(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};