import HandlerWrapper from '../types/HandlerWrapper';
import Router from '../types/Router';
/**
 * Add all routes for interacting with the occurrence DB table.
 * @author Benedikt Arnarsson
 * @param app express application which we are adding routes to.
 */
declare const addOccurrenceRoutes: (router: Router, handlerWrapper: HandlerWrapper) => void;
export default addOccurrenceRoutes;
