import { EndRule } from './EndRule';
import { EngagementPeriod } from './EngagementPeriod';
/** Description of an Engagement */
export interface Engagement {
    /** Current engagement period */
    currentPeriod: EngagementPeriod;
    /** Describes the rule applied at the end of the Engagement */
    endRule?: EndRule;
}
//# sourceMappingURL=Engagement.d.ts.map