UNPKG

@defikitdotnet/education-module-ai

Version:
17 lines (16 loc) 702 B
import * as React from "react"; interface RadioGroupProps extends React.HTMLAttributes<HTMLDivElement> { value: string; onValueChange: (value: string) => void; disabled?: boolean; name?: string; orientation?: "horizontal" | "vertical"; } declare const RadioGroup: React.ForwardRefExoticComponent<RadioGroupProps & React.RefAttributes<HTMLDivElement>>; interface RadioGroupItemProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange"> { value: string; disabled?: boolean; label?: string; } declare const RadioGroupItem: React.ForwardRefExoticComponent<RadioGroupItemProps & React.RefAttributes<HTMLInputElement>>; export { RadioGroup, RadioGroupItem };