var RadioButtonItem = (function () {
function RadioButtonItem(isChecked, label, value, isDisabled) {
this.IsChecked = isChecked;
this.Label = label;
this.Value = value || label;
this.IsDisabled = isDisabled;
}
return RadioButtonItem;
}());
export { RadioButtonItem };