/**
 * 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 { TextContent } from "./TextContent";
export declare const Content: core.serialization.Schema<serializers.Content.Raw, Cohere.Content>;
export declare namespace Content {
    type Raw = Content.Text;
    interface Text extends TextContent.Raw {
        type: "text";
    }
}
