/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as serializers from "../../index";
import * as VoyageAI from "../../../api/index";
import * as core from "../../../core";
export declare const RerankRequest: core.serialization.Schema<serializers.RerankRequest.Raw, VoyageAI.RerankRequest>;
export declare namespace RerankRequest {
    interface Raw {
        query: string;
        documents: string[];
        model: string;
        top_k?: number | null;
        return_documents?: boolean | null;
        truncation?: boolean | null;
    }
}
