import { ApiPath } from "../Extends"; export interface IWCAGPageCheckerApi { context: Promise; } declare module "./UxApi" { interface IOmniaUxApi { wcag: { pageChecker: IWCAGPageCheckerApi; }; } interface IOmniaUxExtendApiManifest { wcag: { pageChecker: { context: ApiPath; }; }; } } export interface IWCAGPageCheckerContextApi { initializeInstance(elementToCheck: string, lang?: string): Promise; }