import type { ObservationContext } from "./types.js"; /** Create an ObservationContext backed by the local Node.js runtime */ export declare function createNodeObservationContext(basePath?: string): ObservationContext; /** Environment metadata captured from the Node.js process */ export declare function getNodeEnvironmentMetadata(): { platform: string; platformVersion: string; };