import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AgentSessionRestartedEventPayload = { reason: string; }; export type AgentSessionRestartedEvent = { seq: number; createdAt: string; type: "session_restarted"; payload: AgentSessionRestartedEventPayload; }; /** @internal */ export declare const AgentSessionRestartedEventPayload$inboundSchema: z.ZodType; export declare function agentSessionRestartedEventPayloadFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AgentSessionRestartedEvent$inboundSchema: z.ZodType; export declare function agentSessionRestartedEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentsessionrestartedevent.d.ts.map