import type { Attributes } from "@opentelemetry/api"; import { type TelemetrySignalLevel } from "../../types"; import type { Embeddings, EmbeddingsBody } from "./schema"; export declare const getEmbeddingsRequestAttributes: (body: EmbeddingsBody, signalLevel?: TelemetrySignalLevel) => Attributes; export declare const getEmbeddingsResponseAttributes: (embeddings: Embeddings, signalLevel?: TelemetrySignalLevel) => Attributes;