import { Command as $Command } from "@smithy/core/client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  CreateExportJobRequest,
  CreateExportJobResponse,
} from "../models/models_0";
import {
  ServiceInputTypes,
  ServiceOutputTypes,
  SESv2ClientResolvedConfig,
} from "../SESv2Client";
export { __MetadataBearer };
export { $Command };
export interface CreateExportJobCommandInput extends CreateExportJobRequest {}
export interface CreateExportJobCommandOutput
  extends CreateExportJobResponse,
    __MetadataBearer {}
declare const CreateExportJobCommand_base: {
  new (
    input: CreateExportJobCommandInput
  ): import("@smithy/core/client").CommandImpl<
    CreateExportJobCommandInput,
    CreateExportJobCommandOutput,
    SESv2ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: CreateExportJobCommandInput
  ): import("@smithy/core/client").CommandImpl<
    CreateExportJobCommandInput,
    CreateExportJobCommandOutput,
    SESv2ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): {
    [x: string]: unknown;
  };
};
export declare class CreateExportJobCommand extends CreateExportJobCommand_base {
  protected static __types: {
    api: {
      input: CreateExportJobRequest;
      output: CreateExportJobResponse;
    };
    sdk: {
      input: CreateExportJobCommandInput;
      output: CreateExportJobCommandOutput;
    };
  };
}
