import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTClient"; import { UpdateThingGroupsForThingRequest, UpdateThingGroupsForThingResponse, } from "../models/models_2"; export { __MetadataBearer }; export { $Command }; export interface UpdateThingGroupsForThingCommandInput extends UpdateThingGroupsForThingRequest {} export interface UpdateThingGroupsForThingCommandOutput extends UpdateThingGroupsForThingResponse, __MetadataBearer {} declare const UpdateThingGroupsForThingCommand_base: { new ( input: UpdateThingGroupsForThingCommandInput ): import("@smithy/core/client").CommandImpl< UpdateThingGroupsForThingCommandInput, UpdateThingGroupsForThingCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [UpdateThingGroupsForThingCommandInput] ): import("@smithy/core/client").CommandImpl< UpdateThingGroupsForThingCommandInput, UpdateThingGroupsForThingCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class UpdateThingGroupsForThingCommand extends UpdateThingGroupsForThingCommand_base { protected static __types: { api: { input: UpdateThingGroupsForThingRequest; output: {}; }; sdk: { input: UpdateThingGroupsForThingCommandInput; output: UpdateThingGroupsForThingCommandOutput; }; }; }