/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { TurnContext } from '../../turnContext'; import { InvokeResponse } from '../../invoke'; /** * Sends an InvokeResponse activity if the channel is Microsoft Teams, including Copilot within MS Teams. */ export declare function sendInvokeResponse(context: TurnContext, response: InvokeResponse): Promise | Promise;