/** * Focuses the provided non-interactive element. * @param element - HTML element to apply focus to. * @param label - Fallback label to apply to the element if focused. * @returns Whether the focus was successful or not (eg. element is not visible). */ declare const focusNonInteractiveElement: (element: HTMLElement | SVGElement, label?: string) => boolean; export default focusNonInteractiveElement; //# sourceMappingURL=focusNonInteractiveElement.d.ts.map