import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DocumentURLChunk, DocumentURLChunk$Outbound } from "./documenturlchunk.js"; import { ImageURLChunk, ImageURLChunk$Outbound } from "./imageurlchunk.js"; import { TextChunk, TextChunk$Outbound } from "./textchunk.js"; import { ThinkChunk, ThinkChunk$Outbound } from "./thinkchunk.js"; import { ToolFileChunk, ToolFileChunk$Outbound } from "./toolfilechunk.js"; export type MessageInputContentChunks = ToolFileChunk | TextChunk | ImageURLChunk | DocumentURLChunk | ThinkChunk; /** @internal */ export declare const MessageInputContentChunks$inboundSchema: z.ZodType; /** @internal */ export type MessageInputContentChunks$Outbound = ToolFileChunk$Outbound | TextChunk$Outbound | ImageURLChunk$Outbound | DocumentURLChunk$Outbound | ThinkChunk$Outbound; /** @internal */ export declare const MessageInputContentChunks$outboundSchema: z.ZodType; export declare function messageInputContentChunksToJSON(messageInputContentChunks: MessageInputContentChunks): string; export declare function messageInputContentChunksFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=messageinputcontentchunks.d.ts.map