/** * YAML Post-Processor - Patches js-yaml output to match pyyaml's formatting * * Replicates pyyaml's Emitter wrapping behavior: * - Double-quoted: breaks with `\` when column + pending > best_width (80) at space * - Plain scalar: breaks at space when column > best_width * - Continuation indent: parent indent + best_indent (usually +2) * - Single-quote preference for strings with brackets */ /** * Patch full YAML document output to match pyyaml formatting */ export declare function patchYamlToPyyaml(yamlText: string): string; //# sourceMappingURL=yaml-patch.d.ts.map