import * as z from "zod/v4"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MessageInputContentChunks, MessageInputContentChunks$Outbound } from "./messageinputcontentchunks.js"; export declare const Role: { readonly Assistant: "assistant"; readonly User: "user"; }; export type Role = OpenEnum; export type MessageInputEntryContent = string | Array; /** * Representation of an input message inside the conversation. */ export type MessageInputEntry = { object?: "entry" | undefined; type?: "message.input" | undefined; createdAt?: Date | undefined; completedAt?: Date | null | undefined; id?: string | undefined; role: Role; content: string | Array; prefix?: boolean | undefined; }; /** @internal */ export declare const Role$inboundSchema: z.ZodType; /** @internal */ export declare const Role$outboundSchema: z.ZodType; /** @internal */ export declare const MessageInputEntryContent$inboundSchema: z.ZodType; /** @internal */ export type MessageInputEntryContent$Outbound = string | Array; /** @internal */ export declare const MessageInputEntryContent$outboundSchema: z.ZodType; export declare function messageInputEntryContentToJSON(messageInputEntryContent: MessageInputEntryContent): string; export declare function messageInputEntryContentFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MessageInputEntry$inboundSchema: z.ZodType; /** @internal */ export type MessageInputEntry$Outbound = { object: "entry"; type: "message.input"; created_at?: string | undefined; completed_at?: string | null | undefined; id?: string | undefined; role: string; content: string | Array; prefix: boolean; }; /** @internal */ export declare const MessageInputEntry$outboundSchema: z.ZodType; export declare function messageInputEntryToJSON(messageInputEntry: MessageInputEntry): string; export declare function messageInputEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=messageinputentry.d.ts.map