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