import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PlanStep = { type?: "plan" | undefined; think: string; currentQuestion: string; errored?: boolean | undefined; /** * The questions that need to be answered to answer the original question. */ questionsToAnswer?: Array | undefined; }; /** @internal */ export declare const PlanStep$inboundSchema: z.ZodType; /** @internal */ export type PlanStep$Outbound = { type: "plan"; think: string; current_question: string; errored: boolean; questions_to_answer?: Array | undefined; }; /** @internal */ export declare const PlanStep$outboundSchema: z.ZodType; export declare function planStepToJSON(planStep: PlanStep): string; export declare function planStepFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=planstep.d.ts.map