import { DynamicModule } from '@nestjs/common';
import { ConfigChannel, ConfigQueue } from './rabbitmq.types';
export declare class RabbitMQModule {
    static forRoot(host: string, username: string, password: string, isAMQPS?: boolean, retry?: number, queues?: ConfigQueue[], channels?: ConfigChannel[]): DynamicModule;
}
