import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTClient"; import { AddThingToThingGroupRequest, AddThingToThingGroupResponse, } from "../models/models_0"; export { __MetadataBearer }; export { $Command }; export interface AddThingToThingGroupCommandInput extends AddThingToThingGroupRequest {} export interface AddThingToThingGroupCommandOutput extends AddThingToThingGroupResponse, __MetadataBearer {} declare const AddThingToThingGroupCommand_base: { new ( input: AddThingToThingGroupCommandInput ): import("@smithy/core/client").CommandImpl< AddThingToThingGroupCommandInput, AddThingToThingGroupCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [AddThingToThingGroupCommandInput] ): import("@smithy/core/client").CommandImpl< AddThingToThingGroupCommandInput, AddThingToThingGroupCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class AddThingToThingGroupCommand extends AddThingToThingGroupCommand_base { protected static __types: { api: { input: AddThingToThingGroupRequest; output: {}; }; sdk: { input: AddThingToThingGroupCommandInput; output: AddThingToThingGroupCommandOutput; }; }; }