import { FC, ReactNode } from 'react'; export interface RadioItem { name: string; value: string; label: ReactNode; isChecked?: boolean; } export interface RadioButtonsProps { items: RadioItem[]; desc?: string; onChange?: (e: any) => void; onBlur?: (e: any) => void; error?: string; required?: boolean; horizontal?: boolean; invert?: boolean; } declare const RadioButtons: FC; export default RadioButtons;