import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import {
  DeleteThingTypeRequest,
  DeleteThingTypeResponse,
} from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface DeleteThingTypeCommandInput extends DeleteThingTypeRequest {}
export interface DeleteThingTypeCommandOutput
  extends DeleteThingTypeResponse,
    __MetadataBearer {}
declare const DeleteThingTypeCommand_base: {
  new (
    input: DeleteThingTypeCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteThingTypeCommandInput,
    DeleteThingTypeCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: DeleteThingTypeCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteThingTypeCommandInput,
    DeleteThingTypeCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class DeleteThingTypeCommand extends DeleteThingTypeCommand_base {}
