import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MemoryEntry, MemoryEntry$Outbound } from "./memoryentry.js"; export type MemoryEntryList = { object: "list"; data: Array; firstId: string | null; lastId: string | null; hasMore: boolean; }; /** @internal */ export declare const MemoryEntryList$inboundSchema: z.ZodType; /** @internal */ export type MemoryEntryList$Outbound = { object: "list"; data: Array; first_id: string | null; last_id: string | null; has_more: boolean; }; /** @internal */ export declare const MemoryEntryList$outboundSchema: z.ZodType; export declare function memoryEntryListToJSON(memoryEntryList: MemoryEntryList): string; export declare function memoryEntryListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memoryentrylist.d.ts.map