import { ChangeEvent } from 'react'; declare type RadioButtonProps = { id: string; name: string; value: string; checked: boolean; label: string; onValueChange: (e: ChangeEvent) => void; }; declare const RadioButton: ({ id, name, checked, label, value, onValueChange, }: RadioButtonProps) => JSX.Element; export default RadioButton;