import { EndStrategyEnum } from './EndStrategyEnum';
/** Description of the rule applied at the end of the Engagement */
export interface EndRule {
    /** Describes the possible strategies for this Engagement */
    possibleStrategies: EndStrategyEnum[];
    /** Strategy applied at the end */
    strategy: EndStrategyEnum;
}
//# sourceMappingURL=EndRule.d.ts.map