/** * Thrown when YAML parsing fails due to invalid syntax. * * @remarks * The exception message includes the parser's original error reason and line/mark information * when available, which enables the model to self-correct malformed YAML. */ export declare const E_YAML_PARSE_ERROR: import("../../../factories").CreatedException<[ string ]>; /** * Thrown when the js-yaml peer dependency is missing or fails to load. * * @remarks * This occurs when the battery's consumer has not installed the optional js-yaml peer * dependency. The message template includes the package name, a description of its purpose, * the underlying error, and the exact install command, so the consumer sees a complete, * actionable message regardless of call site. */ export declare const E_YAML_PEER_MISSING: import("../../../factories").CreatedException<[ string ]>;