/** * Returns the focusable elements inside a container, in DOM order. * * Matches the common interactive selectors (links, enabled form controls, and * anything with a non-negative tabindex) and filters out disabled or * `tabindex="-1"` nodes. Useful for focus trapping inside dialogs/drawers. * @param {HTMLElement} container - The container to search. * @returns {HTMLElement[]} Focusable elements in document order. */ export declare const getFocusableElements: (container: HTMLElement) => HTMLElement[]; //# sourceMappingURL=getFocusableElements.d.ts.map