import CheckInUIProps from '../../types/CheckInUIProps';
import MMDDYY from './MMDDYY';
/**
 * Type describing the base info for an Occurrence (enough to query DB).
 * @author Benedikt Arnarsson
 */
type OccurrenceBasicInfo = Omit<CheckInUIProps, 'visitServerEndpoint'> & MMDDYY;
export default OccurrenceBasicInfo;
