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 AgentSessionListItem = { id: string; triggerType: string; subjectId: string; subject: AgentSessionSubject; status: string; createdAt: string; updatedAt: string; }; /** @internal */ export declare const AgentSessionListItem$inboundSchema: z.ZodType; export declare function agentSessionListItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agentsessionlistitem.d.ts.map