import { CacheModuleOptions } from '@nestjs/cache-manager'; /** * Builds a configurable CacheModule base class and an injection token for module options. * * This leverages NestJS's ConfigurableModuleBuilder to create a base class that * supports a `forRoot` static method for synchronous configuration, * with global scope enabled by default. * * - `CacheModuleClass` is the generated base class to extend for creating * cache modules with configurable options. * - `CACHE_MODULE_OPTIONS_TOKEN` is the injection token used to provide and inject * cache configuration options throughout the module. */ export declare const CacheModuleClass: import("@nestjs/common").ConfigurableModuleCls, CACHE_MODULE_OPTIONS_TOKEN: string | symbol;