import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import {
  DeleteCommandRequest,
  DeleteCommandResponse,
} from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface DeleteCommandCommandInput extends DeleteCommandRequest {}
export interface DeleteCommandCommandOutput
  extends DeleteCommandResponse,
    __MetadataBearer {}
declare const DeleteCommandCommand_base: {
  new (
    input: DeleteCommandCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteCommandCommandInput,
    DeleteCommandCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: DeleteCommandCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteCommandCommandInput,
    DeleteCommandCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class DeleteCommandCommand extends DeleteCommandCommand_base {
  protected static __types: {
    api: {
      input: DeleteCommandRequest;
      output: DeleteCommandResponse;
    };
    sdk: {
      input: DeleteCommandCommandInput;
      output: DeleteCommandCommandOutput;
    };
  };
}
