/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as VoyageAI from "../index";
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;
}
