/** * @signetai/core - YAML utilities */ /** * Parse a YAML string into a JavaScript object. * * Malformed user-owned YAML should degrade to an empty object instead of * propagating parser exceptions into daemon or CLI startup. */ export declare function parseSimpleYaml(text: string): Record; /** * Parse a full YAML document with the bundled YAML parser. * * Use this for richer config surfaces that need arrays, deeper nesting, * or round-trippable values that exceed parseSimpleYaml's limits. */ export declare function parseYamlDocument(text: string): unknown; /** * Stringify a full YAML document with the bundled YAML serializer. */ export declare function stringifyYamlDocument(value: unknown): string; /** * Format a JavaScript object as YAML. * * `_indent` is retained for internal call-site compatibility, but the * shared YAML library always emits 2-space indentation here. */ export declare function formatYaml(obj: Record, _indent?: number): string; //# sourceMappingURL=yaml.d.ts.map