import { HTMLAttributes } from 'react'; import type { UseRadioGroupProps } from './types'; export interface UseRadioGroupResult { rootProps: HTMLAttributes; } export declare function useRadioGroup(props: UseRadioGroupProps): UseRadioGroupResult;