/** Return enabled, sequentially focusable descendants in DOM order. */ export declare function getFocusableElements(container: HTMLElement): HTMLElement[]; /** Focus without scrolling when supported by the current document. */ export declare function focusWithoutScroll(element: HTMLElement): void; /** Focus the first interactive descendant, or the container as a fallback. */ export declare function focusFirst(container: HTMLElement): void; /** Keep keyboard Tab navigation inside a modal container. */ export declare function trapTabKey(event: KeyboardEvent, container: HTMLElement): void; //# sourceMappingURL=focus-management.d.ts.map