import type { Attributes } from "@opentelemetry/api"; import type { FinishReason } from "ai"; import { type TelemetrySignalLevel } from "../../types"; import type { Messages, MessagesBody } from "./schema"; export declare const getMessagesRequestAttributes: (body: MessagesBody, signalLevel?: TelemetrySignalLevel) => Attributes; export declare const getMessagesResponseAttributes: (response: Messages, signalLevel?: TelemetrySignalLevel, finishReason?: FinishReason) => Attributes;