import { InputHTMLAttributes } from 'react'; export interface RadioStatus { disabled?: boolean; checked?: boolean; isError?: boolean; } export interface RadioProps extends RadioStatus, Omit, 'type'> { }