import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteSlackWorkspaceAuthorizationRequest, DeleteSlackWorkspaceAuthorizationResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteSlackWorkspaceAuthorizationCommand}. */ export interface DeleteSlackWorkspaceAuthorizationCommandInput extends DeleteSlackWorkspaceAuthorizationRequest { } /** * @public * * The output of {@link DeleteSlackWorkspaceAuthorizationCommand}. */ export interface DeleteSlackWorkspaceAuthorizationCommandOutput extends DeleteSlackWorkspaceAuthorizationResult, __MetadataBearer { } declare const DeleteSlackWorkspaceAuthorizationCommand_base: { new (input: DeleteSlackWorkspaceAuthorizationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteSlackWorkspaceAuthorizationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the Slack workspace authorization that allows channels to be configured in that workspace. This requires all configured channels in the workspace to be deleted. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ChatbotClient, DeleteSlackWorkspaceAuthorizationCommand } from "@aws-sdk/client-chatbot"; // ES Modules import * // const { ChatbotClient, DeleteSlackWorkspaceAuthorizationCommand } = require("@aws-sdk/client-chatbot"); // CommonJS import * // import type { ChatbotClientConfig } from "@aws-sdk/client-chatbot"; * const config = {}; // type is ChatbotClientConfig * const client = new ChatbotClient(config); * const input = { // DeleteSlackWorkspaceAuthorizationRequest * SlackTeamId: "STRING_VALUE", // required * }; * const command = new DeleteSlackWorkspaceAuthorizationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteSlackWorkspaceAuthorizationCommandInput - {@link DeleteSlackWorkspaceAuthorizationCommandInput} * @returns {@link DeleteSlackWorkspaceAuthorizationCommandOutput} * @see {@link DeleteSlackWorkspaceAuthorizationCommandInput} for command's `input` shape. * @see {@link DeleteSlackWorkspaceAuthorizationCommandOutput} for command's `response` shape. * @see {@link ChatbotClientResolvedConfig | config} for ChatbotClient's `config` shape. * * @throws {@link DeleteSlackWorkspaceAuthorizationFault} (server fault) *

There was an issue deleting your Slack workspace.

* * @throws {@link InvalidParameterException} (client fault) *

Your request input doesn't meet the constraints required by AWS Chatbot.

* * @throws {@link ChatbotServiceException} *

Base exception class for all service exceptions from Chatbot service.

* * * @public */ export declare class DeleteSlackWorkspaceAuthorizationCommand extends DeleteSlackWorkspaceAuthorizationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteSlackWorkspaceAuthorizationRequest; output: {}; }; sdk: { input: DeleteSlackWorkspaceAuthorizationCommandInput; output: DeleteSlackWorkspaceAuthorizationCommandOutput; }; }; }