import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CodeStep = { type?: "code" | undefined; think: string; currentQuestion: string; errored?: boolean | undefined; /** * The natural language description of the code issue you need to solve. */ codeIssue: string; /** * The code you generated to solve the code issue. */ code?: string | undefined; /** * The result of the code you generated after executing it. */ codeResult?: string | undefined; }; /** @internal */ export declare const CodeStep$inboundSchema: z.ZodType; /** @internal */ export type CodeStep$Outbound = { type: "code"; think: string; current_question: string; errored: boolean; code_issue: string; code: string; code_result: string; }; /** @internal */ export declare const CodeStep$outboundSchema: z.ZodType; export declare function codeStepToJSON(codeStep: CodeStep): string; export declare function codeStepFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=codestep.d.ts.map