import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import { CreateThingRequest, CreateThingResponse } from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface CreateThingCommandInput extends CreateThingRequest {}
export interface CreateThingCommandOutput
  extends CreateThingResponse,
    __MetadataBearer {}
declare const CreateThingCommand_base: {
  new (
    input: CreateThingCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateThingCommandInput,
    CreateThingCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: CreateThingCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateThingCommandInput,
    CreateThingCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class CreateThingCommand extends CreateThingCommand_base {}
