import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FailedStep = { type?: "failed" | undefined; think: string; currentQuestion: string; errored?: boolean | undefined; }; /** @internal */ export declare const FailedStep$inboundSchema: z.ZodType; /** @internal */ export type FailedStep$Outbound = { type: "failed"; think: string; current_question: string; errored: boolean; }; /** @internal */ export declare const FailedStep$outboundSchema: z.ZodType; export declare function failedStepToJSON(failedStep: FailedStep): string; export declare function failedStepFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=failedstep.d.ts.map