import { GrouperAlgoSettings, StudentGroupAssignment } from 'dce-live-grouper';
import { OccurrenceBasicInfo } from '../../../shared/types';
import VisitServerEndpoint from '../../../types/VisitServerEndpoint';
/**
 * Call the backend to post a new event in a given series, i.e. inheriting old groups.
 * @author Benedikt Arnarsson
 * @param occInfo
 * @param seriesId
 */
declare const postNewEventInSeries: (opts: {
    visitServerEndpoint: VisitServerEndpoint;
    occInfo: OccurrenceBasicInfo;
    seriesId: number;
    grouperAlgoSettings: GrouperAlgoSettings;
    preAssignments: StudentGroupAssignment[];
}) => Promise<void>;
export default postNewEventInSeries;
