/** * Test commands: cache-stats, clear-cache * * CLI commands for managing the LLM response cache. */ import { Effect } from "effect"; import { type Flags } from "../utils/parse.js"; /** * tx test:cache-stats - Show LLM cache statistics */ export declare const testCacheStats: (_pos: string[], flags: Flags) => Effect.Effect; /** * tx test:clear-cache - Clear LLM cache entries */ export declare const testClearCache: (_pos: string[], flags: Flags) => Effect.Effect; //# sourceMappingURL=test.d.ts.map