import React from 'react'; interface ForwardFocusRef { focus(): void; } /** * Focus forwarding helper for radio groups where only the first selected * child element should be focused. */ export default function useRadioGroupForwardFocus(forwardedRef: React.Ref, items: ReadonlyArray<{ value: string; }> | undefined, value: string | null): [React.Ref, number]; export {};