import * as z from "zod/v4-mini"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { AgentMemoryTurnMessage } from "./agent-memory-turn-message.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare const SessionTranscriptScope: { readonly Global: "global"; readonly Local: "local"; }; export type SessionTranscriptScope = OpenEnum; export type SessionTranscript = { sessionId: string; threadId: string; agentWallet: string; userAddress?: string | undefined; scope?: SessionTranscriptScope | undefined; haiId?: string | undefined; messages: Array; summary?: string | undefined; tokenCount?: number | undefined; metadata: { [k: string]: any; }; createdAt: number; expiresAt?: number | undefined; }; /** @internal */ export declare const SessionTranscriptScope$inboundSchema: z.ZodMiniType; /** @internal */ export declare const SessionTranscript$inboundSchema: z.ZodMiniType; export declare function sessionTranscriptFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=session-transcript.d.ts.map