@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
9 lines (8 loc) • 343 B
TypeScript
import React from "react";
type FocusGuardsProps = {
children: React.ReactNode;
startRef?: React.RefObject<HTMLSpanElement>;
endRef?: React.RefObject<HTMLSpanElement>;
};
declare function FocusGuards({ children, startRef: forwardedStartRef, endRef: forwardedEndRef, }: FocusGuardsProps): React.JSX.Element;
export { FocusGuards };