import { NonCancelableEventHandler } from '../internal/events';
import { RadioGroupProps } from './interfaces';
interface RadioButtonProps extends RadioGroupProps.RadioButtonDefinition {
    name: string;
    checked: boolean;
    withoutLabel?: boolean;
    onChange?: NonCancelableEventHandler<RadioGroupProps.ChangeDetail>;
}
export default function RadioButton({ name, label, value, checked, withoutLabel, description, disabled, controlId, onChange }: RadioButtonProps): JSX.Element;
export {};
