import React from "react"; export type EnhancedRadioOption = { label: string; value: string; }; export type EnhancedRadioProps = { label?: string; name: string; value: string; options: EnhancedRadioOption[]; onValueChange: (value: string) => void; className?: string; }; export declare const EnhancedRadio: ({ className, label, name, onValueChange, options, value, }: EnhancedRadioProps) => React.JSX.Element;