import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MessageOutputContentChunks, MessageOutputContentChunks$Outbound } from "./messageoutputcontentchunks.js"; export type MessageOutputEntryContent = string | Array; export type MessageOutputEntry = { object?: "entry" | undefined; type?: "message.output" | undefined; createdAt?: Date | undefined; completedAt?: Date | null | undefined; agentId?: string | null | undefined; model?: string | null | undefined; id?: string | undefined; role?: "assistant" | undefined; content: string | Array; }; /** @internal */ export declare const MessageOutputEntryContent$inboundSchema: z.ZodType; /** @internal */ export type MessageOutputEntryContent$Outbound = string | Array; /** @internal */ export declare const MessageOutputEntryContent$outboundSchema: z.ZodType; export declare function messageOutputEntryContentToJSON(messageOutputEntryContent: MessageOutputEntryContent): string; export declare function messageOutputEntryContentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MessageOutputEntry$inboundSchema: z.ZodType; /** @internal */ export type MessageOutputEntry$Outbound = { object: "entry"; type: "message.output"; created_at?: string | undefined; completed_at?: string | null | undefined; agent_id?: string | null | undefined; model?: string | null | undefined; id?: string | undefined; role: "assistant"; content: string | Array; }; /** @internal */ export declare const MessageOutputEntry$outboundSchema: z.ZodType; export declare function messageOutputEntryToJSON(messageOutputEntry: MessageOutputEntry): string; export declare function messageOutputEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=messageoutputentry.d.ts.map