@defikitdotnet/education-module-ai
Version:
AI Education Module using Agent Framework
17 lines (16 loc) • 702 B
TypeScript
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 };