/** * State object returned by the onChange callback */ export type RadioState = { /** * Whether the radio is checked */ checked: boolean; /** * The value of the radio */ value?: string | number | readonly string[]; };