/** * `dynamo-e2e` VQA layer — a 16 DOM evidence-detektor identifier (spec §9). * * **SCOPE-LOCK (UI-20260611-003)**: minden detektor csak strukturált JSON evidence-t * emittál, NEM verdict-et. A `severityHint` AJÁNLÁS az AI-nek. * * Minden detektor egy enum-érték; a registry-ben (`DyE2E_VQA_DetectorRegistry_Const`) * van a per-detector page-script + interpret-config. */ export declare enum DyE2E_VQA_DOMEvidence_Detector { /** Body + modal egyidejű scroll. */ nestedScroll = "nested-scroll", /** Clip-path / overflow:hidden levágott tartalom. */ overflowClipping = "overflow-clipping", /** Primary CTA viewport-fold alatt. */ viewportOffCTA = "viewport-off-cta", /** Z-indexed elem takarja a kattintható célt. */ occludedTarget = "occluded-target", /** Sticky/fixed elem takarja a célt. */ stickyOccludes = "sticky-occludes", /** Kattintható elem < 44×44 px. */ smallTouchTarget = "small-touch-target", /** Ellipsis-elment szöveg / scrollWidth > clientWidth. */ truncatedText = "truncated-text", /** Táblázat túl szélesnek mérve. */ tableOverflow = "table-overflow", /** Modal-content > viewport-méret. */ modalViewportFit = "modal-viewport-fit", /** > 1 scrollbar a viewport-ban. */ scrollbarCount = "scrollbar-count", /** Flow-step után activeElement body-n. */ focusLoss = "focus-loss", /** aria-invalid + nincs látható error-element. */ hiddenError = "hidden-error", /** Error-element kontraszt-ratio < 4.5:1 vagy < 12px. */ unreadableError = "unreadable-error", /** Kattintható elem cursor:pointer NÉLKÜL. */ ambiguousInteractive = "ambiguous-interactive", /** Input-bounding-rect kilóg a parent-formból. */ formFieldBreak = "form-field-break", /** Landscape + primary-CTA < 60px a fold-tól. */ verticalSpaceShortage = "vertical-space-shortage" } //# sourceMappingURL=dom-evidence-detector.enum.d.ts.map