import { DyE2E_CWVThresholds_Interface } from '../../contracts/_models/interfaces/cwv-thresholds.interface'; /** * Wave-3 — CWV JSON-report summarizer util. * * Bemenet: a `DyE2E_CWVEmission_Util.emitRouteBlock()` által írt JSON-shape * ({ route, summary, raw }). Kimenet: ember-olvasható markdown vagy JSON. */ export interface DyE2E_CWVReportShape_Min { route?: string; summary?: Record; } export declare class DyE2E_CWVSummarize_Util { /** Markdown-tablázat egy report-ról. */ static toMarkdown(report: DyE2E_CWVReportShape_Min, thresholds?: DyE2E_CWVThresholds_Interface): string; /** Egyszerű JSON-summary (csak p75 + status). */ static toJsonSummary(report: DyE2E_CWVReportShape_Min, thresholds?: DyE2E_CWVThresholds_Interface): Record; } //# sourceMappingURL=cwv-summarize.util.d.ts.map