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