/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as serializers from "../../index";
import * as Cohere from "../../../api/index";
import * as core from "../../../core";
import { Message } from "../../types/Message";
import { ChatStreamRequestPromptTruncation } from "../../types/ChatStreamRequestPromptTruncation";
import { ChatConnector } from "../../types/ChatConnector";
import { ChatDocument } from "../../types/ChatDocument";
import { ChatStreamRequestCitationQuality } from "../../types/ChatStreamRequestCitationQuality";
import { Tool } from "../../types/Tool";
import { ToolResult } from "../../types/ToolResult";
import { ResponseFormat } from "../../types/ResponseFormat";
import { ChatStreamRequestSafetyMode } from "../../types/ChatStreamRequestSafetyMode";
export declare const ChatStreamRequest: core.serialization.Schema<serializers.ChatStreamRequest.Raw, Omit<Cohere.ChatStreamRequest, "accepts">>;
export declare namespace ChatStreamRequest {
    interface Raw {
        message: string;
        model?: string | null;
        preamble?: string | null;
        chat_history?: Message.Raw[] | null;
        conversation_id?: string | null;
        prompt_truncation?: ChatStreamRequestPromptTruncation.Raw | null;
        connectors?: ChatConnector.Raw[] | null;
        search_queries_only?: boolean | null;
        documents?: ChatDocument.Raw[] | null;
        citation_quality?: ChatStreamRequestCitationQuality.Raw | null;
        temperature?: number | null;
        max_tokens?: number | null;
        max_input_tokens?: number | null;
        k?: number | null;
        p?: number | null;
        seed?: number | null;
        stop_sequences?: string[] | null;
        frequency_penalty?: number | null;
        presence_penalty?: number | null;
        raw_prompting?: boolean | null;
        return_prompt?: boolean | null;
        tools?: Tool.Raw[] | null;
        tool_results?: ToolResult.Raw[] | null;
        force_single_step?: boolean | null;
        response_format?: ResponseFormat.Raw | null;
        safety_mode?: ChatStreamRequestSafetyMode.Raw | null;
    }
}
