import { Event } from '../event/index'; /** * Describes a ProcessModel. * The content is always user-specific and will not contain any information * that a requesting user is not authorized to see. */ export declare class ProcessModel { id: string; xml: string; startEvents: Array; endEvents: Array; }