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