import { Row } from '../flex' import { Divider } from '../divider' import { StylableComponentProps } from '../theme' import { RadioOption } from '../radio-button' export interface RadioGroupProps extends StylableComponentProps { selected: RadioOption onChange: (value: any) => any options: RadioOption[] formName: string }