import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Search, Search$Outbound } from "./search.js"; export type SearchStep = { type?: "base_search" | undefined; think: string; currentQuestion: string; errored?: boolean | undefined; search: Search; }; /** @internal */ export declare const SearchStep$inboundSchema: z.ZodType; /** @internal */ export type SearchStep$Outbound = { type: "base_search"; think: string; current_question: string; errored: boolean; search: Search$Outbound; }; /** @internal */ export declare const SearchStep$outboundSchema: z.ZodType; export declare function searchStepToJSON(searchStep: SearchStep): string; export declare function searchStepFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchstep.d.ts.map