import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MemoryEntry = { id: string; object: "memory_entry"; memoryStoreId: string; path: string; content: string; contentHash: string; bytes: number; metadata?: { [k: string]: string; } | undefined; createdAt: number; updatedAt: number; }; /** @internal */ export declare const MemoryEntry$inboundSchema: z.ZodType; /** @internal */ export type MemoryEntry$Outbound = { id: string; object: "memory_entry"; memory_store_id: string; path: string; content: string; content_hash: string; bytes: number; metadata?: { [k: string]: string; } | undefined; created_at: number; updated_at: number; }; /** @internal */ export declare const MemoryEntry$outboundSchema: z.ZodType; export declare function memoryEntryToJSON(memoryEntry: MemoryEntry): string; export declare function memoryEntryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memoryentry.d.ts.map