import { DyE2E_CWVMetric_Type } from '../../contracts/_enums/cwv-metric-type.enum'; /** * Egyetlen mérési eredmény — egy konkrét metrika egy konkrét page-load-on. * * `attribution` mező opcionális — a `web-vitals/attribution` shape-jét tükrözi * (LCP element selector, CLS sources, INP target element). */ export declare class DyE2E_CWVMeasurement_DataModel { metric: DyE2E_CWVMetric_Type; /** A mért érték — ms vagy unitless. */ value: number; /** Iteráció-index (0..N-1) — N-iter synthetic runnerből. */ iteration: number; /** A route, ahol mértük. */ route: string; /** Web-vitals "rating" — 'good' | 'needs-improvement' | 'poor'. */ rating?: 'good' | 'needs-improvement' | 'poor'; /** Attribution-info (per metric eltérő shape). */ attribution?: Record; constructor(set: Partial); } //# sourceMappingURL=cwv-measurement.data-model.d.ts.map