import { ConfigService } from '@nestjs/config';
import { Transport } from '@nestjs/microservices';
export declare const getNatsConfig: (configService: ConfigService, queue: string) => {
    transport: Transport;
    options: {
        servers: any[];
        queue: any;
    };
};
