export declare class Runnable {
    private options;
    private bot;
    constructor(bot: any, options: any);
    run(args: any): Promise<any>;
}
