import { Router } from 'express';
import { Types } from 'wa-chat-server';
import { IWAChatServerMluviiConfig } from './interface/IWAChatServerMluviiConfig';
export declare class WAChatServerMluvii implements Types.IWAChatServerAdapter {
    private config;
    private waChatServer;
    private api;
    private log;
    static mluviiSessionIdToWaSessionId: Map<string, string>;
    constructor(config: IWAChatServerMluviiConfig, waChatServer: Types.IWAChatServer);
    getRouter(): Router;
}
