/** * Checks for signs that element can be focused with keyboard. tabIndex above 0 is ignored to * only target natural focus order. Not checking the possibility of an element to * be focused, for example element can have display: none applied to it or any other * circumstances could prevent actual focus. */ export declare function tuiIsFocusable(element: Element): boolean;