import { StudentGroupAssignment, GrouperAlgoSettings } from 'dce-live-grouper';
import CheckInUIProps from '../../../types/CheckInUIProps';
import MMDDYY from '../../../shared/types/MMDDYY';
import OccurrenceGrouperInfo from '../../../shared/types/OccurrenceGrouperInfo';
/**
 * Function for calling the backend to create EventStateData for the occurrence.
 * @author Benedikt Arnarsson
 */
declare const postEventForOccurrence: (opts: {
    checkInProps: CheckInUIProps;
    occurrenceDate: MMDDYY;
    occurrenceGrouperInfo: OccurrenceGrouperInfo;
    preAssignments: StudentGroupAssignment[];
    grouperAlgoSettings: GrouperAlgoSettings;
}) => Promise<void>;
export default postEventForOccurrence;
