import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateMemoryEntryRequest = { content: string; ifMatch?: string | undefined; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const UpdateMemoryEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateMemoryEntryRequest$Outbound = { content: string; if_match?: string | undefined; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const UpdateMemoryEntryRequest$outboundSchema: z.ZodType; export declare function updateMemoryEntryRequestToJSON(updateMemoryEntryRequest: UpdateMemoryEntryRequest): string; export declare function updateMemoryEntryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatememoryentryrequest.d.ts.map