import { default as axe } from 'axe-core'; export declare const superLongStringForReflowTest: string; /** * Runs Axe accessibility tests on the specified element and returns the violations. * @param element - The HTML element to run the Axe tests on. * @returns An array of Axe violations found in the element. */ export declare function runAxeAndGetViolations(element: HTMLElement): Promise; export declare function expectNoAxeViolations(element: HTMLElement): Promise; export declare function resizeWindowForReflowTest(): Promise; export declare function expectComponentNotToHaveHorizontalScrollbar(component: HTMLElement): void; export declare function expectComponentFocusStyle(component: HTMLElement, styleAttribute: string, styleValue: string): void;