import { DynamicModule } from '@nestjs/common'; import { ClusterModuleOptions, ClusterModuleAsyncOptions } from './interfaces'; export declare class ClusterModule { /** * Registers the module synchronously. */ static forRoot(options: ClusterModuleOptions): DynamicModule; /** * Registers the module asynchronously. */ static forRootAsync(options: ClusterModuleAsyncOptions): DynamicModule; }