/** * Format a value for display. Uses YAML-like formatting (though it may not be valid YAML): * - Objects use `key: value` on separate lines, no braces, no quotes around keys * - Arrays use `[val, val]` on a single line if they fit within `maxWidth`, * otherwise use `- item` list syntax * - Strings are quoted, other primitives are printed as-is * - Functions are displayed as `(Function)` * * The returned string is indented to the given `level` (each level = 2 spaces). */ export declare function formatValue(value: unknown, options?: { /** Current nesting level (each level = 2 spaces of indentation) */ level?: number; /** Character width limit before arrays go to multiple lines (default 80) */ maxWidth?: number; }): string; //# sourceMappingURL=formatValue.d.ts.map