/** * Contains a response from the ProcessEngine, which will be send after a * ProcessInstance was started. * Depending on the type of start callback used, this will also contain * information about the EndEvent that was reached, as well as the overall * result. */ export declare class ProcessStartResponsePayload { correlationId: string; processInstanceId?: string; endEventId?: string; tokenPayload?: string; }