import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { OTelAttribute } from "./OTelAttribute"; import { OTelStatus } from "./OTelStatus"; export declare const OTelSpan: core.serialization.ObjectSchema; export declare namespace OTelSpan { interface Raw { traceId: string; spanId: string; parentSpanId?: string | null; name: string; kind: number; startTimeUnixNano: string; endTimeUnixNano: string; attributes: OTelAttribute.Raw[]; status: OTelStatus.Raw; } }