import { DelayVendor } from '../DelayVendor';
declare class DelayRmq implements DelayVendor {
    constructor();
    pushOne(lhd: string, msg: string): Promise<void>;
    pushMulti(lhd: string, msgs: Array<string>): Promise<number>;
}
export default DelayRmq;
