import { DynamicModule } from '@nestjs/common'; import { MergeModuleOptions } from './merge-module-options.interface'; /** * NestJS module for registering a merge feature. * * Use `forFeature()` to register your merge service implementation * and any supporting modules. This method dynamically creates and * registers a merge controller. */ export declare class MergeModule { /** * Configure MergeModule with a custom service and supporting modules. * * @param {MergeModuleOptions} options - Options including service and imports. * @returns {DynamicModule} A dynamic module bound to the provided service. */ static forFeature(options: MergeModuleOptions): DynamicModule; }