import * as BotBuilder from 'botbuilder'; export interface IChannels { facebook: string; skype: string; telegram: string; kik: string; email: string; slack: string; groupme: string; sms: string; emulator: string; directline: string; console: string; } export interface ChannelInterface { channels: IChannels; supportsKeyboards(session: BotBuilder.Session, buttonCnt?: number): boolean; supportsCardActions(session: BotBuilder.Session, buttonCnt?: number): boolean; getChannelId(addressable: BotBuilder.Session | BotBuilder.IMessage | BotBuilder.IAddress): string; } export declare let Channel: ChannelInterface;