import { Command as $Command } from "@smithy/core/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/core/client").CommandImpl< CreateThingCommandInput, CreateThingCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: CreateThingCommandInput ): import("@smithy/core/client").CommandImpl< CreateThingCommandInput, CreateThingCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class CreateThingCommand extends CreateThingCommand_base { protected static __types: { api: { input: CreateThingRequest; output: CreateThingResponse; }; sdk: { input: CreateThingCommandInput; output: CreateThingCommandOutput; }; }; }