/**
 * Main component which manages the check-in flow.
 * Wraps all subsequent steps in a body.
 * Should be opened on a button click.
 * @author Benedikt Arnarsson
 */
import React from 'react';
import AssignToGroups from './shared/types/AssignToGroups';
import CheckInUIProps from './types/CheckInUIProps';
type Props = (CheckInUIProps & {
    onClose: () => void;
    assignToGroups: AssignToGroups;
    subText?: string;
});
declare const CheckInUi: React.FC<Props>;
export default CheckInUi;
