export interface RadioProps { id?: string; name: string; value: string; checked: boolean; label: string; onChange: (value: string) => void; className?: string; disabled?: boolean; required?: boolean; "aria-label"?: string; "aria-describedby"?: string; } export declare const Radio: import('react').ForwardRefExoticComponent>;