import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const AgentSessionStepEventStatus: { readonly InProgress: "in_progress"; readonly Complete: "complete"; readonly Error: "error"; }; export type AgentSessionStepEventStatus = ClosedEnum; export type AgentSessionStepEventPayload = { stepId: string; title: string; status: AgentSessionStepEventStatus; }; export type AgentSessionStepEvent = { seq: number; createdAt: string; type: "step"; payload: AgentSessionStepEventPayload; }; /** @internal */ export declare const AgentSessionStepEventStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const AgentSessionStepEventPayload$inboundSchema: z.ZodType; export declare function agentSessionStepEventPayloadFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AgentSessionStepEvent$inboundSchema: z.ZodType; export declare function agentSessionStepEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentsessionstepevent.d.ts.map