import * as BB from 'botbuilder'; export declare enum DebugType { Client = 1, ClientBody = 2, MessageQueue = 4, Memory = 8, MemVerbose = 16 } export declare class CLDebug { private static adapter; private static conversationReference; private static cachedMessages; static logToUI: boolean; static verbose: boolean; static debugType: DebugType; static InitLogger(adapter: BB.BotAdapter, conversationReference: Partial): void; private static HasDebugType; private static SendCache; static Log(text: string, filter?: DebugType): void; static LogRequest(method: string, path: string, payload: any): void; static Error(error: any, context?: string, sendAsChat?: boolean): string; static Verbose(text: string): void; static LogObject(obj: any): void; }