import { RefObject } from 'react'; /** * Traps focus within a specified container element. * * @param containerRef - Ref object pointing to the container element. * @param isActive - Boolean indicating if the focus trap should be active. * @param initialFocusRef - Optional ref object pointing to the element that should receive focus initially. */ export declare const useFocusTrap: (containerRef: RefObject, isActive: boolean, initialFocusRef?: RefObject) => void;