import type { Attributes } from "@opentelemetry/api"; import { type TelemetrySignalLevel } from "../../types"; import type { ChatCompletions, ChatCompletionsBody } from "./schema"; export declare const getChatRequestAttributes: (body: ChatCompletionsBody, signalLevel?: TelemetrySignalLevel) => Attributes; export declare const getChatResponseAttributes: (completions: ChatCompletions, signalLevel?: TelemetrySignalLevel) => Attributes;