import { Channel } from './channel'; import * as amqp from 'amqplib'; export declare function createReplyQueue(channel: Channel): Promise; export declare function addHandler(correlationId: any, handler: (err: Error, body: string) => void): void; export declare function getReply(content: any, properties: amqp.Options.Publish, channel: Channel, cb: Function): Promise;