import React from 'react'; import './RadioButton.scss'; export interface RadioButtonProps { /** * Optional Specifies the unique identifier for the radio button. */ id?: string; /** * Optional Text that appears next to the radio button, */ label?: string; /** * Optional The name associated with the radio button input. */ name?: string; /** * Optional radio button value */ value?: string; /** * Optional Boolean value to disable radio button */ disabled?: boolean; /** * Optional on change handler */ className?: string; /** * Optional className for custom styling. */ onChange?: (event: React.ChangeEvent) => void; /** * Optional Variant of radio button */ variant?: 'primary' | 'info' | 'danger' | 'success' | 'warning'; /** * Optional checked attribute to prefill */ checked?: boolean; } declare const RadioButton: React.FC; export default RadioButton;