import type { Page } from "playwright"; export interface AxeViolation { ruleId: string; impact: string; nodes: number; help: string; } export declare function axeVersion(): string; export declare function injectAndRunAxe(page: Page, runOptions?: Record): Promise; export declare function runAxeOnStory(page: Page, storyUrl: string, runOptions?: Record): Promise;