import { RmqOptions as NestRmqOptions } from '@nestjs/microservices'; import { BaseTransport } from './base.transport'; export interface RmqOptions { urls?: string[]; queue?: string; prefetchCount?: number; noAck?: boolean; replyQueue?: string; persistent?: boolean; noAssert?: boolean; queueOptions?: { durable?: boolean; [key: string]: any; }; } export declare class RmqTransport extends BaseTransport { options: RmqOptions; constructor(props: Partial); getOptions(): NestRmqOptions; } //# sourceMappingURL=rmq.transport.d.ts.map