import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { AgentSessionSubject } from "./agentsessionsubject.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type PendingApproval = { approvalId: string; toolCallId: string; toolName: string; input?: any | null | undefined; }; export type AgentSessionDetail = { id: string; triggerType: string; subjectId: string; subject: AgentSessionSubject; status: string; createdAt: string; updatedAt: string; resultText: string | null; toolNames: Array | null; error: string | null; pendingApproval: PendingApproval | null; }; /** @internal */ export declare const PendingApproval$inboundSchema: z.ZodType; export declare function pendingApprovalFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AgentSessionDetail$inboundSchema: z.ZodType; export declare function agentSessionDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentsessiondetail.d.ts.map