import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteMemoryEntryRequest = { ifMatch?: string | undefined; }; /** @internal */ export declare const DeleteMemoryEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteMemoryEntryRequest$Outbound = { if_match?: string | undefined; }; /** @internal */ export declare const DeleteMemoryEntryRequest$outboundSchema: z.ZodType; export declare function deleteMemoryEntryRequestToJSON(deleteMemoryEntryRequest: DeleteMemoryEntryRequest): string; export declare function deleteMemoryEntryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletememoryentryrequest.d.ts.map