/** * Focus scope types. */ export declare const SCOPE_TYPES: Readonly<{ INLINE: "inline"; MODAL: "modal"; }>; /** * Focus activation sources. */ export declare const FOCUS_SOURCES: Readonly<{ UNKNOWN: "unknown"; CLICK: "click"; TAB_FROM_ABOVE: "tab_from_above"; TAB_FROM_BELOW: "tab_from_below"; }>; /** * Default shortcuts context name. */ export declare const DEFAULT_SHORTCUTS_CONTEXT = "grid";