import Occurrence from './Occurrence';
/**
 * Type for storing Occurrence info in DB.
 * @author Benedikt Arnarsson hoe
 */
type OccurrenceDocument = ({
    id: string;
} & (Occurrence));
export default OccurrenceDocument;
