export type FocusManagerHook = {
    enabled?: boolean;
    targetRef: HTMLDivElement | null;
};
export declare const useFocusTrap: ({ targetRef, enabled }: FocusManagerHook) => void;
