import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AgentSessionStopResponse = { jobId: string; status: string; canceled: boolean; }; /** @internal */ export declare const AgentSessionStopResponse$inboundSchema: z.ZodType; export declare function agentSessionStopResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentsessionstopresponse.d.ts.map