import type NodeCache from "node-cache"; import type { Options } from "node-cache"; interface AppCache extends Options { disabled?: boolean; } declare let appCache: { get(_: any): string | undefined; set(_: any, __: any): void; options: NodeCache.Options; data: NodeCache.Data; }; declare function configureCacheControl(options: AppCache): void; export { appCache, configureCacheControl };