/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import type { OTelLogs } from '../types.js'; import type { Logger } from './base.js'; /** * Creates an OpenTelemetry logger that implements the Logger interface for the Agents SDK. The logger will emit logs with the appropriate severity level and namespace attributes. */ export declare function createOTelLogger(otelLogs: OTelLogs, namespace: string): Logger;