import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FileChunk = { type?: "file" | undefined; fileId: string; }; /** @internal */ export declare const FileChunk$inboundSchema: z.ZodType; /** @internal */ export type FileChunk$Outbound = { type: "file"; file_id: string; }; /** @internal */ export declare const FileChunk$outboundSchema: z.ZodType; export declare function fileChunkToJSON(fileChunk: FileChunk): string; export declare function fileChunkFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filechunk.d.ts.map