import { FC, ReactNode, DetailedHTMLProps, InputHTMLAttributes } from 'react'; export interface RadioButtonProps extends DetailedHTMLProps, HTMLInputElement> { /** overwrite className */ className?: string; /** overwrite className in RadioButton */ classNameRadioButton?: string; /** Text or ReactNode to be displayed at the left of the radio input */ labelLeft?: ReactNode | string; /** Label Right side RadioButton*/ labelRight?: ReactNode | string; /** disabled state */ disabled?: boolean; /** Reference used on the input component */ ref?: any; } declare const RadioButton: FC; export default RadioButton;