/**
 * Create a pre-assignment pairing (student + group number)
 * @author Gabe Abrams
 */
import React from 'react';
import User from '../../shared/types/User';
type Props = {
    students: User[];
    onCancel: () => void;
    /**
     * Handler to call when user is done creating the pre-assignment
     * @param studentId the id of the student to assign
     * @param groupNum the group number to assign the student to
     */
    onDone: (studentId: number, groupNum: number) => void;
};
declare const CreatePreAssignment: React.FC<Props>;
export default CreatePreAssignment;
