interface Props { label: string; name: string; checked: boolean; onChange: () => void; } declare const Radio: (props: Props) => JSX.Element; export default Radio;