/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { CloudAdapter, TurnContext } from '@microsoft/agents-hosting'; import { TeamsConnectorClient } from './connector-client/teamsConnectorClient'; /** * Adapter for handling cloud-based bot interactions. */ export declare class TeamsCloudAdapter extends CloudAdapter { connectorClient: TeamsConnectorClient; protected createConnectorClient(serviceUrl: string, scope: string): Promise; protected setConnectorClient(context: TurnContext): void; }