import "vitest-browser-lit"; import type { RunOptions } from "axe-core"; interface AxeMatchers { toHaveNoAxeViolations(options?: RunOptions): Promise; } declare module "vitest" { interface Assertion extends AxeMatchers { } interface AsymmetricMatchersContaining extends AxeMatchers { } } export {};