import { Result, run } from "axe-core";
declare global {
    interface Window {
        axe: {
            run: typeof run;
        };
    }
}
/**
 * Check if the page has accessibility issues.
 */
export declare function checkForAccessibilityIssues(level: "A" | "AA"): Promise<void>;
export declare const getErrorMessage: (violations: Result[]) => Promise<string>;
//# sourceMappingURL=checkForAccessibilityIssues.d.ts.map