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"; import { MemoryLoopStepManifest } from "./memory-loop-step-manifest.js"; export declare const Loop: { readonly Hot: "hot"; readonly Durable: "durable"; readonly Maintenance: "maintenance"; }; export type Loop = OpenEnum; export declare const TokenPolicy: { readonly ReturnsCompactPromptOnly: "returns compact prompt only"; readonly ReturnsMetadataOnly: "returns metadata only"; }; export type TokenPolicy = OpenEnum; export type MemoryLoopManifest = { id: string; version: "compose.agent_memory_loop.v1"; description: string; loop: Loop; tokenPolicy: TokenPolicy; steps: Array; }; /** @internal */ export declare const Loop$inboundSchema: z.ZodMiniType; /** @internal */ export declare const TokenPolicy$inboundSchema: z.ZodMiniType; /** @internal */ export declare const MemoryLoopManifest$inboundSchema: z.ZodMiniType; export declare function memoryLoopManifestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memory-loop-manifest.d.ts.map