/// import { KeyAnyDict } from '../entities/SharedTypes'; import { Process } from '../entities/Process/Process'; export declare class YAMLParser { private _yaml; private _process; private _error; private _nodeIds; constructor(PassedBy: 'uri' | 'content', YamlRef: string, encoding?: BufferEncoding); private get GotError(); get NoError(): boolean; get RawYaml(): KeyAnyDict; get Error(): string; get Process(): Process; }