import { OtelExporter } from '@mastra/otel-exporter'; import type { OtelExporterConfig } from '@mastra/otel-exporter'; export declare const ARIZE_AX_ENDPOINT = "https://otlp.arize.com/v1/traces"; export type ArizeExporterConfig = Omit & { /** * Required if sending traces to Arize AX */ spaceId?: string; /** * Required if sending traces to Arize AX, or to any other collector that * requires an Authorization header */ apiKey?: string; /** * Collector endpoint destination for trace exports. * Required when sending traces to Phoenix, Phoenix Cloud, or other collectors. * Optional when sending traces to Arize AX. */ endpoint?: string; /** * Optional project name to be added as a resource attribute using * OpenInference Semantic Conventions */ projectName?: string; /** * Optional headers to be added to each OTLP request */ headers?: Record; }; export declare class ArizeExporter extends OtelExporter { name: string; constructor(config?: ArizeExporterConfig); } //# sourceMappingURL=tracing.d.ts.map