import { Row, Divider } from '../web'
import { StylableComponent, RadioOption } from '.'

export interface RadioGroupProps extends StylableComponent {
    selected: RadioOption
    onChange: (value: any) => any
    options: RadioOption[]
    formName: string
}
