import React from "react"; import type { DescendantsManager } from "../../../hooks"; interface RovingFocusProps extends Omit, "tabIndex"> { asChild?: boolean; descendants: DescendantsManager; onEntryFocus?: (event: Event) => void; } declare const RovingFocus: React.ForwardRefExoticComponent>; export { RovingFocus, type RovingFocusProps };