import * as React from 'react'; interface RadioButtonProps { children: React.ReactNode; disabled?: boolean; checked?: boolean; value?: string | number; size?: 'xs' | 'sm' | 'md' | 'lg'; buttonStyle?: 'solid' | 'outline'; onClick?: (e: React.MouseEvent) => void; } declare const RadioButton: React.FC; export default RadioButton;