export declare function excludeTouch(eventHandler: () => void): (event: PointerEvent) => void;
/**
 * Returns a list of nodes that can be in the tab sequence.
 * @see: https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker
 */
export declare function getTabbableNodes(container: HTMLElement): HTMLElement[];
