/**
 * Page for pre-assigning students to groups.
 * @author Benedikt Arnarsson
 */
import React from 'react';
import { StudentGroupAssignment } from 'dce-live-grouper';
import CheckInUIProps from '../../types/CheckInUIProps';
import MMDDYY from '../../shared/types/MMDDYY';
import OccurrenceGrouperInfo from '../../shared/types/OccurrenceGrouperInfo';
type Props = {
    checkInProps: CheckInUIProps;
    occurrenceDate: MMDDYY;
    occurrenceGrouperInfo: OccurrenceGrouperInfo;
    oldGroups: StudentGroupAssignment[];
    onSubmit: (preAssignments: StudentGroupAssignment[]) => void;
};
declare const PreAssign: React.FC<Props>;
export default PreAssign;
