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