import { AuthenticationModuleOptions } from './authentication-module-options.interface'; /** * Utilizes NestJS's ConfigurableModuleBuilder to create a dynamic, * configurable Authentication module. * * - Supports a `forRoot` static method for synchronous configuration. * - Marks the module as global by default (available across the app). * - Exposes the module class and module options token for DI. */ export declare const AuthenticationModuleClass: import("@nestjs/common").ConfigurableModuleCls, AUTHENTICATION_MODULE_OPTIONS_TOKEN: string | symbol;