import Occurrence from '../../../shared/types/Occurrence';
import VisitServerEndpoint from '../../../types/VisitServerEndpoint';
/**
 * Create a new occurrence document in the database.
 * @author Benedikt Arnarsson
 * @param occ the occurrence that is being placed in the DB
 */
declare const putNewOccurrence: (visitServerEndpoint: VisitServerEndpoint, occ: Occurrence) => Promise<void>;
export default putNewOccurrence;
