/** * A process is a collection of maps (process instances). * A map is a collection of links that track the process' progress. */ export declare class Process { readonly name: string; readonly state: string; constructor(name: string, state?: string); } //# sourceMappingURL=process.d.ts.map