import axe from "axe-core"; import { Component } from "../types"; interface Report { report: any[]; } export interface Combination { url: string; violation: axe.Rule; target: string; hit: Component; } export declare function getPath(target: string): string[]; export declare function hasSnippet(html: string, htmlSnippet: string): boolean; export declare function combinationExists(combinations: Combination[], hit: Component): boolean; export declare function combine(project: Component[], report: Report): Combination[]; export {};