import { Options } from 'amqplib';
export interface ExchangeOptions {
    name: string;
    type: 'direct' | 'topic' | 'headers' | 'fanout' | 'match' | string;
    assert: Options.AssertExchange;
}
//# sourceMappingURL=exchange.options.d.ts.map