export declare const StudentRole: {
    readonly Student: "Student";
    readonly Admin: "Admin";
};
/**
 * Student Role
 */
export type StudentRole = (typeof StudentRole)[keyof typeof StudentRole];
