import * as React from "react"; export interface Props { name: string; value: string; className?: string; label: string; id: string; disabled?: boolean; onChange?: (e: React.ChangeEvent) => void; checked: boolean; radioTile?: boolean; inputRef?: any; isRequired?: boolean; } declare const Radio: React.FC; export default Radio;