export declare const focusableElementSelector: string; /** * Returns all focusable elements within a given element * * Focusable elements defined in the constant {@link baseFocusableElementSelectors} */ export declare const queryAllFocusableElements: (root?: HTMLElement) => Array; /** * Returns the first focusable element within a given element * * Focusable elements defined in the constant {@link baseFocusableElementSelectors} */ export declare const queryFirstFocusableElement: (root?: HTMLElement) => HTMLElement | null; /** * Returns the last focusable element within a given element * * Focusable elements defined in the constant {@link baseFocusableElementSelectors} */ export declare const queryLastFocusableElement: (root?: HTMLElement) => HTMLElement | null; //# sourceMappingURL=queryFocusableElements.d.ts.map