/** * Trace Export — Export traces to different formats: * OpenTelemetry, LangSmith, CSV. */ import type { AgentTrace } from './types'; export type ExportFormat = 'opentelemetry' | 'langsmith' | 'csv'; export interface ExportOptions { format: ExportFormat; serviceName?: string; } /** * Export a trace to the specified format. */ export declare function exportTrace(trace: AgentTrace, options: ExportOptions): string; /** * List supported export formats. */ export declare function listExportFormats(): string[]; //# sourceMappingURL=export.d.ts.map