import { Identity } from '@5minds/processcube_engine_sdk'; import type { ProcessInstance } from '../ProcessInstance'; declare const _default: { hook: (processInstance: ProcessInstance) => void; unhook: (processInstanceId: string) => void; isRegistered: (processInstanceId: string) => boolean; get: (processInstanceId: string) => ProcessInstance; kill: (identity: Identity, processInstanceId: string) => void; }; export default _default;