/** * Unix-socket HTTP transport — Node.js only. * * This file imports `node:http` directly. Browser bundles MUST NOT pull * this in. The package.json `exports` map routes browser builds to * `unix-socket.browser.ts` (which throws) instead. tsconfig + bundler * configs that respect `browser` field do this automatically. * * Used when an operator runs the agent with TCP bound only to localhost * (or no TCP at all) and primary access via the socket file. */ export declare function fetchViaUnixSocket(socketPath: string, path: string, init: { method: string; headers: Record; body?: string; timeoutMs: number; signal: AbortSignal; }): Promise; //# sourceMappingURL=unix-socket.node.d.ts.map