/**
 * Page for selecting GrouperAlgorithm,
 * i.e. picking between max number of groups
 * or max group size.
 * @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;
    preAssignments: StudentGroupAssignment[];
    onSubmit: () => void;
};
declare const GrouperSettings: React.FC<Props>;
export default GrouperSettings;
