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