import IInputRadioChoice from './IInputRadioChoice'

export default interface IInputRadio {
    choices: Array<IInputRadioChoice>
    name: string
    value: string
    label?: string
    disabled?: boolean,
    displayAs?: 'row' | 'column'
    validation?: string
    error?: string | null
    isValid?: boolean
}
