export declare const FOCUSABLE_ELEMENTS: string[]; /** * A query selector to find elements that are programmatically focusable. * * Example: * * ```ts * const focusableElements = document.querySelectorAll(PROGRAMATICALLY_FOCUSABLE); * // do something with elements * ``` */ export declare const PROGRAMATICALLY_FOCUSABLE: string; /** * A query selector to find elements that are focusable only with tab and shift+tab. * * Example: * * ```ts * const focusableElements = document.querySelectorAll(TAB_FOCUSABLE); * // do something with elements * ``` */ export declare const TAB_FOCUSABLE: string;