/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * Defaults to `"accurate"`.
 * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
 */
export declare type CitationOptionsMode = "FAST" | "ACCURATE" | "OFF";
export declare const CitationOptionsMode: {
    readonly Fast: "FAST";
    readonly Accurate: "ACCURATE";
    readonly Off: "OFF";
};
