import HandlerWrapper from '../types/HandlerWrapper';
import Router from '../types/Router';
import RecordAttendanceFunction from '../shared/types/RecordAttendanceFunction';
/**
 * Endpoint for taking attendance.
 * @author Benedikt Arnarsson
 * @param router the router that we are adding this endpoint to.
 * @param recordAttendance function for recording attendance.
 */
declare const addPutAttendance: (router: Router, handlerWrapper: HandlerWrapper, recordAttendance: RecordAttendanceFunction) => void;
export default addPutAttendance;
