import { Channel } from './channel';
import { Bot } from "./bot-model";
export declare class Viber extends Channel {
    constructor(bot: Bot);
    accountInfo(): Promise<any>;
    execute(body: any, parameters: any, handler: any): Promise<{}>;
    send(body: any): Promise<{}>;
}
