import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTClient"; import { UpdateThingRequest, UpdateThingResponse } from "../models/models_2"; export { __MetadataBearer }; export { $Command }; export interface UpdateThingCommandInput extends UpdateThingRequest {} export interface UpdateThingCommandOutput extends UpdateThingResponse, __MetadataBearer {} declare const UpdateThingCommand_base: { new ( input: UpdateThingCommandInput ): import("@smithy/core/client").CommandImpl< UpdateThingCommandInput, UpdateThingCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: UpdateThingCommandInput ): import("@smithy/core/client").CommandImpl< UpdateThingCommandInput, UpdateThingCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class UpdateThingCommand extends UpdateThingCommand_base { protected static __types: { api: { input: UpdateThingRequest; output: {}; }; sdk: { input: UpdateThingCommandInput; output: UpdateThingCommandOutput; }; }; }