import User from '../../../shared/types/User';
import VisitServerEndpoint from '../../../types/VisitServerEndpoint';
/**
 * Given a course and event ID, fetch the corresponding roster.
 * @author Benedikt Arnarsson
 * @param courseId the ID of the course (Canvas generated)
 * @returns a list of Users, containing ID and name information.
 */
declare const fetchStudentList: (courseId: number, visitServerEndpoint: VisitServerEndpoint) => Promise<User[]>;
export default fetchStudentList;
