/**
 * 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 { ChatSearchResult } from "./ChatSearchResult";
import { ChatDocument } from "./ChatDocument";
import { ChatStreamEvent } from "./ChatStreamEvent";
export declare const ChatSearchResultsEvent: core.serialization.ObjectSchema<serializers.ChatSearchResultsEvent.Raw, Cohere.ChatSearchResultsEvent>;
export declare namespace ChatSearchResultsEvent {
    interface Raw extends ChatStreamEvent.Raw {
        search_results?: ChatSearchResult.Raw[] | null;
        documents?: ChatDocument.Raw[] | null;
    }
}
