import { BotFrameworkAuthentication, ClaimsIdentity } from 'botframework-connector'; import { ChannelServiceHandlerBase } from './channelServiceHandlerBase'; /** * A class to help with the implementation of the Bot Framework protocol using [BotFrameworkAuthentication](xref:botframework-connector.BotFrameworkAuthentication). */ export declare class CloudChannelServiceHandler extends ChannelServiceHandlerBase { private readonly auth; /** * @param auth Bot framework authentication */ constructor(auth: BotFrameworkAuthentication); protected authenticate(authHeader: string): Promise; } //# sourceMappingURL=cloudChannelServiceHandler.d.ts.map