UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines (9 loc) 481 B
import React from "react"; import type { DescendantsManager } from "../../../utils/hooks/index.js"; interface RovingFocusProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "tabIndex"> { asChild?: boolean; descendants: DescendantsManager<HTMLDivElement, any>; onEntryFocus?: (event: Event) => void; } declare const RovingFocus: React.ForwardRefExoticComponent<RovingFocusProps & React.RefAttributes<HTMLDivElement>>; export { RovingFocus, type RovingFocusProps };