import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A content item from a vector store file. */ export type FileContentItem = { /** * The content type. */ type: "text"; /** * The text content. */ text: string; }; /** @internal */ export declare const FileContentItem$inboundSchema: z.ZodType; /** @internal */ export type FileContentItem$Outbound = { type: "text"; text: string; }; /** @internal */ export declare const FileContentItem$outboundSchema: z.ZodType; export declare function fileContentItemToJSON(fileContentItem: FileContentItem): string; export declare function fileContentItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filecontentitem.d.ts.map