/** * Helper method to find the next focusable sibling element relative to the * specified element. * * @param {string} query - Argument that gets passed to document.querySelectorAll * @param {HTMLElement} element - Specified element (e.target) * @returns {HTMLElement} - element to be focused */ export declare function getNextSibling(query: string, element: EventTarget): HTMLElement; /** * Helper method to find the previous focusable sibling element relative to the * specified element. * * @param {string} query - Argument that gets passed to document.querySelectorAll * @param {HTMLElement} element - Specified element (e.target) * @returns {HTMLElement} - element to be focused */ export declare function getPreviousSibling(query: string, element: EventTarget): HTMLElement; //# sourceMappingURL=dom-query.d.ts.map