import { StylableComponent } from '.'

export interface RadioButtonProps extends StylableComponent {
    isSelected: boolean
    name: string
    label: string
    value: any
    img: string
    onChange: () => any
}
