import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type FilePath = { fileId: string; index: number; type: "file_path"; }; /** @internal */ export declare const FilePath$inboundSchema: z.ZodType; /** @internal */ export type FilePath$Outbound = { file_id: string; index: number; type: "file_path"; }; /** @internal */ export declare const FilePath$outboundSchema: z.ZodType; export declare function filePathToJSON(filePath: FilePath): string; export declare function filePathFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filepath.d.ts.map