import { type Optional } from '@ephox/katamari'; import { type SugarElement } from '@ephox/sugar'; export interface AriaManager { readonly id: string; readonly link: (elem: SugarElement) => void; readonly unlink: (elem: SugarElement) => void; } declare const find: (queryElem: SugarElement) => Optional>; declare const manager: () => AriaManager; export { find, manager }; //# sourceMappingURL=AriaControls.d.ts.map