import * as z from "zod/v4-mini"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare const Method: { readonly Get: "GET"; readonly Post: "POST"; readonly Patch: "PATCH"; readonly Delete: "DELETE"; }; export type Method = OpenEnum; export type MemoryLoopStepManifest = { operationId: string; method: Method; path: string; purpose: string; }; /** @internal */ export declare const Method$inboundSchema: z.ZodMiniType; /** @internal */ export declare const MemoryLoopStepManifest$inboundSchema: z.ZodMiniType; export declare function memoryLoopStepManifestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memory-loop-step-manifest.d.ts.map