import { ServicesModuleOptions } from './services-module-options.interface'; /** * Builds a configurable ServicesModule 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. * * - `ServicesModuleClass` is the generated base class to extend for creating * services modules with configurable options. * - `SERVICES_MODULE_OPTIONS_TOKEN` is the injection token used to provide and inject * service configuration options throughout the module. */ export declare const ServicesModuleClass: import("@nestjs/common").ConfigurableModuleCls, SERVICES_MODULE_OPTIONS_TOKEN: string | symbol;