import type * as VoyageAI from "../index.js"; export interface RerankResponse { /** The object type, which is always "list". */ object?: string; /** An array of the reranking results, sorted by the descending order of relevance scores. */ data?: VoyageAI.RerankResponseDataItem[]; /** Name of the model. */ model?: string; usage?: VoyageAI.RerankResponseUsage; }