import { type Optional } from '@ephox/katamari'; import { type SugarElement } from '@ephox/sugar'; import type { AlloyComponent } from '../component/ComponentApi'; export interface FocusManager { get: (component: AlloyComponent) => Optional>; set: (component: AlloyComponent, focusee: SugarElement) => void; } declare const dom: () => FocusManager; declare const highlights: () => FocusManager; export { dom, highlights }; //# sourceMappingURL=FocusManagers.d.ts.map