/** * * Cache Management tool — clears the response cache. */ import * as z from "zod"; export declare const ClearCache: z.ZodObject<{}, z.core.$strip>; export type ClearCache = z.output; interface ClearCacheResult { success: boolean; message: string; } /** * * Clear all cached API responses. */ export declare function clearCache(): Promise; /** * * Get cache status information. */ export declare function getCacheStatus(): { success: boolean; message: string; memoryEntries: number; }; export {}; //# sourceMappingURL=cache.d.ts.map