import { Provider } from './provider';
import { Bot } from '../../bot-model';
export declare class NotSupported implements Provider {
    private bot;
    constructor(bot: Bot);
    process(payload: any): Promise<any>;
}
