import type { Page } from "playwright";
import type { AxeResultEntry, AxeRunSnapshot } from "./types.js";
export declare function parseAxeRunSnapshot(input: unknown): AxeRunSnapshot;
export declare function axeLaneForRule(ruleId: string): "blocking" | "advisory";
export declare function axeLocator(entry: AxeResultEntry): string;
export declare function injectAxe(page: Page): Promise<void>;
export declare function runAxeOnPage(page: Page, options?: {
    disabledRules?: string[];
}): Promise<AxeRunSnapshot>;
//# sourceMappingURL=axe.d.ts.map