/** * @internal * * If you need access to the last focusable descendant of a container, you can use * `getLastFocusableChild`. The function uses the * https://developer.mozilla.org/en-US/docs/Web/API/TreeWalker to * iterate over the children of the container and returns either a `Node` if a * focusable element is found, or `null`. */ export declare function getLastFocusableChild(container: HTMLElement): Node | null;