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 {};
