/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import type { SpanName } from '../types.js'; /** * Determines if a span is disabled based on its name and the `AGENTS_TELEMETRY_DISABLED_SPAN_CATEGORIES` environment variable or configuration setting. * @param name The name of the span to check. * @returns A boolean indicating whether the span is disabled. */ export declare function isSpanDisabled(name: SpanName): boolean;