import React from 'react'; export 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]; //# sourceMappingURL=radio-group.d.ts.map