export interface RadioOption { value: string; label: string; } export interface RadioGroupProps { options: RadioOption[]; value?: string; onChange?: (value: string) => void; direction?: "horizontal" | "vertical"; disabled?: boolean; name?: string; className?: string; "aria-label"?: string; "aria-labelledby"?: string; } export declare const RadioGroup: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=RadioGroup.d.ts.map