export default useConstrainedTabbing; /** * In Dialogs/modals, the tabbing must be constrained to the content of * the wrapper element. This hook adds the behavior to the returned ref. * * @return {import('react').RefCallback} Element Ref. * * @example * ```js * import { useConstrainedTabbing } from '@gechiui/compose'; * * const ConstrainedTabbingExample = () => { * const constrainedTabbingRef = useConstrainedTabbing() * return ( *
*
* ); * } * ``` */ declare function useConstrainedTabbing(): import('react').RefCallback; //# sourceMappingURL=index.d.ts.map