import { IIdentity } from '@essential-projects/iam_contracts'; import { ProcessTokenType } from './process_token_type'; export declare class ProcessToken { processInstanceId: string; processModelId: string; correlationId: string; flowNodeInstanceId: string; identity: IIdentity; createdAt: Date; caller: string; type: ProcessTokenType; payload: any; }