import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTClient"; import { DeleteThingGroupRequest, DeleteThingGroupResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface DeleteThingGroupCommandInput extends DeleteThingGroupRequest {} export interface DeleteThingGroupCommandOutput extends DeleteThingGroupResponse, __MetadataBearer {} declare const DeleteThingGroupCommand_base: { new ( input: DeleteThingGroupCommandInput ): import("@smithy/core/client").CommandImpl< DeleteThingGroupCommandInput, DeleteThingGroupCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: DeleteThingGroupCommandInput ): import("@smithy/core/client").CommandImpl< DeleteThingGroupCommandInput, DeleteThingGroupCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class DeleteThingGroupCommand extends DeleteThingGroupCommand_base { protected static __types: { api: { input: DeleteThingGroupRequest; output: {}; }; sdk: { input: DeleteThingGroupCommandInput; output: DeleteThingGroupCommandOutput; }; }; }