import { CacheService } from "./cache.service"; export declare class CacheController { private service; constructor(service: CacheService); flushAll(): Promise; warmupAll(): Promise<{ status: boolean; }>; flushModule(module: string): Promise; warmupModule(module: string, body: any): Promise<{ status: boolean; }>; }