import React from 'react'; import { ControlProps } from '../types'; export declare function useRadio({ name, value, checked, defaultChecked, disabled, controlRef, controlProps, onUpdate, onChange, onFocus, onBlur, id, }: ControlProps): { checked: boolean; inputProps: React.InputHTMLAttributes & React.RefAttributes; };