import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Annotation for referencing a file path in the model's output. Used when the model mentions specific files. */ export type FilePath = { /** * The annotation type identifier for file path references. */ type: "file_path"; /** * The ID of the file being referenced. */ fileId: string; /** * The character index in the output text where this file path reference applies. */ index: number; }; /** @internal */ export declare const FilePath$inboundSchema: z.ZodType; /** @internal */ export type FilePath$Outbound = { type: "file_path"; file_id: string; index: number; }; /** @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