import { Command as $Command } from "@smithy/smithy-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/smithy-client").CommandImpl<
    UpdateThingCommandInput,
    UpdateThingCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: UpdateThingCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    UpdateThingCommandInput,
    UpdateThingCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class UpdateThingCommand extends UpdateThingCommand_base {}
