import OccurrenceBasicInfo from '../../shared/types/OccurrenceBasicInfo';
import VisitServerEndpoint from '../../types/VisitServerEndpoint';
/**
 * Call the backend to check whether the occurrence has already started.
 * @author Benedikt Arnarsson
 * @param occurrenceBasicInfo information needed to query for the occurrence.
 * @returns a boolean indicating whether the occurrence has already been created/started.
 */
declare const isOccurrenceStarted: (visitServerEndpoint: VisitServerEndpoint, occurrenceBasicInfo: OccurrenceBasicInfo) => Promise<boolean>;
export default isOccurrenceStarted;
