import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Input text content item: Plain text content to send to the model. */ export type InputText = { /** * The content type identifier for text input. */ type: "input_text"; /** * The text content to send to the model. */ text: string; }; /** @internal */ export declare const InputText$inboundSchema: z.ZodType; /** @internal */ export type InputText$Outbound = { type: "input_text"; text: string; }; /** @internal */ export declare const InputText$outboundSchema: z.ZodType; export declare function inputTextToJSON(inputText: InputText): string; export declare function inputTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=inputtext.d.ts.map