/** @param { Node } node */ export function isTabbable(node: Node): boolean; /** * @param { HTMLElement } root * @param { boolean } [includeRoot = false] */ export function getFirstTabbable(root: HTMLElement, includeRoot?: boolean): HTMLElement | null; /** * @param { HTMLElement } root * @param { boolean } [includeRoot = false] */ export function getLastTabbable(root: HTMLElement, includeRoot?: boolean): HTMLElement | null; /** * @param { HTMLElement } root * @param { HTMLElement } target */ export function hasTabbableBefore(root: HTMLElement, target: HTMLElement): boolean; /** * @param { HTMLElement } root * @param { HTMLElement } target */ export function hasTabbableAfter(root: HTMLElement, target: HTMLElement): boolean; //# sourceMappingURL=tabbable.d.ts.map