import { Identity } from '@5minds/processcube_engine_sdk';
/**
* Encapsulates a message for when a Process Instance gets killed by a user.
*/
export type KillProcessInstanceMessageInternal = {
/**
* Contain the killers identity.
*/
killedBy: Identity;
};