import { StylableComponentProps } from '../theme' import { Option } from '../form-field' export interface RadioOption extends Option { value: string img: string } export interface RadioButtonProps extends StylableComponentProps { isSelected: boolean name: string label: string value: any img: string onChange: () => any }