/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as OctoAI from "../../../../api/index"; import * as core from "../../../../core"; import { Content } from "./Content"; import { ToolCall } from "./ToolCall"; export declare const ChatMessage: core.serialization.ObjectSchema; export declare namespace ChatMessage { interface Raw { content?: Content.Raw | null; role: string; tool_calls?: ToolCall.Raw[] | null; } }