import { NonCancelableEventHandler } from '../internal/events'; import { RadioGroupProps } from './interfaces'; interface RadioButtonProps extends RadioGroupProps.RadioButtonDefinition { name: string; checked: boolean; withoutLabel?: boolean; onChange?: NonCancelableEventHandler; } export default function RadioButton({ name, label, value, checked, withoutLabel, description, disabled, controlId, onChange, }: RadioButtonProps): JSX.Element; export {}; //# sourceMappingURL=radio-button.d.ts.map