import { ChangeEventHandler } from 'react'; import type { InputBaseProps, InputValueProps } from '../../shared/types'; export interface UseRadioGroupStateResult { name: string; selectedValue?: string; isDisabled?: boolean; isReadOnly?: boolean; setSelectedValue?: ChangeEventHandler; } export interface UseRadioGroupStateProps extends InputBaseProps, InputValueProps { } export declare function useRadioGroupState(props: UseRadioGroupStateProps): UseRadioGroupStateResult;