import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FileSearchResult, FileSearchResult$Outbound } from "./filesearchresult.js"; export declare const FileSearchToolCallStatus: { readonly InProgress: "in_progress"; readonly Searching: "searching"; readonly Completed: "completed"; readonly Incomplete: "incomplete"; readonly Failed: "failed"; }; export type FileSearchToolCallStatus = ClosedEnum; /** * File search call item: A tool-call record for semantic file search, including query terms, status, and optional results. */ export type FileSearchToolCall = { type: "file_search_call"; id: string; queries: Array; status: FileSearchToolCallStatus; results?: Array | undefined; }; /** @internal */ export declare const FileSearchToolCallStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FileSearchToolCallStatus$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FileSearchToolCall$inboundSchema: z.ZodType; /** @internal */ export type FileSearchToolCall$Outbound = { type: "file_search_call"; id: string; queries: Array; status: string; results?: Array | undefined; }; /** @internal */ export declare const FileSearchToolCall$outboundSchema: z.ZodType; export declare function fileSearchToolCallToJSON(fileSearchToolCall: FileSearchToolCall): string; export declare function fileSearchToolCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filesearchtoolcall.d.ts.map