import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import {
  CreateThingGroupRequest,
  CreateThingGroupResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface CreateThingGroupCommandInput extends CreateThingGroupRequest {}
export interface CreateThingGroupCommandOutput
  extends CreateThingGroupResponse,
    __MetadataBearer {}
declare const CreateThingGroupCommand_base: {
  new (
    input: CreateThingGroupCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateThingGroupCommandInput,
    CreateThingGroupCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: CreateThingGroupCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    CreateThingGroupCommandInput,
    CreateThingGroupCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class CreateThingGroupCommand extends CreateThingGroupCommand_base {}
