import type { FocusableDOMProps, InputBaseProps, InputValueProps, ValidationProps } from '../../shared/types'; export interface UseRadioGroupProps extends InputBaseProps, InputValueProps { } export interface BaseRadioProps extends InputBaseProps, FocusableDOMProps, ValidationProps, InputValueProps { checked?: boolean; defaultChecked?: boolean; }