import { type ChannelModel } from 'amqplib';
export type AmqpConfig = {
    hostname: string;
    port: number;
    username: string;
    password: string;
    vhost: string;
    useTls: boolean;
};
export declare function resolveAmqpConnection(config: AmqpConfig): Promise<ChannelModel>;
