import { Priority, WcagLevel, WcagVersion } from './rules'; import { Result } from 'axe-core'; /** * Process given tags from a11y violations and extract WCAG meta-data * Ref: https://github.com/dequelabs/axe-core/blob/develop/doc/API.md#axe-core-tags */ export declare class WcagMetadata { readonly violation: Result; static readonly regExp: RegExp; static readonly defaultSC = "best-practice"; wcagLevel: WcagLevel; wcagVersion: WcagVersion; successCriteria: string; priority: Priority; constructor(violation: Result); /** * Return formatted string containing WCAG SC and Priority */ toString(): string; } //# sourceMappingURL=wcag.d.ts.map