import React from 'react'; interface RadioGroupProps { children: React.ReactNode; value: string; onChange: (value: string) => void; name: string; label?: string; className?: string; } export declare const RadioGroup: React.FC; interface RadioGroupItemProps { value: string; label: string; className?: string; } export declare const RadioGroupItem: React.FC; export {};