/// export type UserRole = "teacher" | "student" | null; export type UserRoleContextTypes = { userRole: UserRole; setUserRole: (role: UserRole) => void; }; declare const UserRoleContext: import("react").Context; type UserRoleContextProviderTypes = { children: React.ReactNode; }; export declare function UserRoleContextProvider({ children, }: UserRoleContextProviderTypes): import("react/jsx-runtime").JSX.Element; export default UserRoleContext;