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