#!/usr/bin/env node
///
export declare class BPMNator {
private parser;
private builder;
private _BPMN;
private lastError;
get LastError(): string;
get BPMN(): string;
ProduceBPMN(): Promise;
SaveBPMN(DestinationURI: string, charset?: BufferEncoding): Promise;
LoadYAMLbyURI(URI: string, charset?: BufferEncoding): boolean;
LoadYAMLbyContent(Content: string): boolean;
BuildProcess(): boolean;
SaveBPMNWithoutDiagram(DestinationURI: string, charset?: BufferEncoding): boolean;
ProduceBPMNWithoutDiagram(): string;
private saveSomethingToURI;
private DiagramPreprod;
}