import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { DeleteTenantRequest, DeleteTenantResponse } from "../models/models_0";
import {
  ServiceInputTypes,
  ServiceOutputTypes,
  SESv2ClientResolvedConfig,
} from "../SESv2Client";
export { __MetadataBearer };
export { $Command };
export interface DeleteTenantCommandInput extends DeleteTenantRequest {}
export interface DeleteTenantCommandOutput
  extends DeleteTenantResponse,
    __MetadataBearer {}
declare const DeleteTenantCommand_base: {
  new (
    input: DeleteTenantCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteTenantCommandInput,
    DeleteTenantCommandOutput,
    SESv2ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: DeleteTenantCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    DeleteTenantCommandInput,
    DeleteTenantCommandOutput,
    SESv2ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class DeleteTenantCommand extends DeleteTenantCommand_base {
  protected static __types: {
    api: {
      input: DeleteTenantRequest;
      output: {};
    };
    sdk: {
      input: DeleteTenantCommandInput;
      output: DeleteTenantCommandOutput;
    };
  };
}
