import type { UIElement } from '@instructure/shared-types'; /** * --- * category: utilities/a11y * --- * * Scope tab in order to trap focus within a specified * element. * @module scopeTab * @param element * @param event the DOM Event that was fired * @param onLeavingFinalTabbable function executed when leaving final tabbable instead of the default behavior */ declare function scopeTab(element: UIElement | undefined, event: React.KeyboardEvent, onLeavingFinalTabbable?: () => void): void; export default scopeTab; export { scopeTab }; //# sourceMappingURL=scopeTab.d.ts.map