/**
 * First modal of the check-in flow.
 * Checks the Occurrence backend and either goes to CheckInModal or starts setup.
 * @author Benedikt Arnarsson
 */
import React from 'react';
import CheckInUIProps from '../../types/CheckInUIProps';
import MMDDYY from '../../shared/types/MMDDYY';
type Props = (CheckInUIProps & {
    onSubmit: (mmddyy: MMDDYY, occIsStarted?: boolean) => void;
});
declare const LoadOccurrence: React.FC<Props>;
export default LoadOccurrence;
