import type { Attributes } from '@opentelemetry/api'; import type { Resource } from '@opentelemetry/resources'; /** * Well-known symbol used by Node.js `util.inspect` (and `console.*`) to * render an object via a custom representation. Defined as a global Symbol * so it works without importing from `node:util`, keeping this module safe * for browser builds (where the symbol is simply never looked up). */ export declare const inspectCustom: unique symbol; /** * Collect a Resource's settled attributes without touching the * `attributes` getter, which emits diag.error/debug entries when async * attribute detectors are still pending. Promise-like (unsettled) * entries are silently skipped so logging a Span/Tracer/Provider during * startup doesn't recurse through the diag pipeline. */ export declare function settledResourceAttributes(resource: Resource): Attributes; export type InspectFn = (value: unknown, options: unknown) => string; export interface InspectStylizeOptions { depth?: number | null; stylize?: (text: string, styleType: string) => string; } /** * Build a class-tagged inspect representation. Returns a stub like * `[ClassName]` once the recursion budget is exhausted, otherwise returns * `ClassName ` so nested fields keep proper coloring, * indentation, and depth handling. In environments that don't supply an * `inspect` callback (e.g. browsers), falls back to returning the raw * payload object. */ export declare function formatInspect(className: string, payload: object, depth: number, options: InspectStylizeOptions | undefined, inspect: InspectFn | undefined): unknown; //# sourceMappingURL=inspect.d.ts.map