@defikitdotnet/education-module-ai
Version:
AI Education Module using Agent Framework
9 lines (8 loc) • 325 B
TypeScript
export type UserRole = "admin" | "instructor" | "student";
interface UserRoleSelectProps {
value: UserRole;
onChange: (value: UserRole) => void;
disabled?: boolean;
}
export declare const UserRoleSelect: ({ value, onChange, disabled, }: UserRoleSelectProps) => import("react/jsx-runtime").JSX.Element;
export {};