import { Command as $Command } from "@smithy/core/client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  ListImportJobsRequest,
  ListImportJobsResponse,
} from "../models/models_0";
import {
  ServiceInputTypes,
  ServiceOutputTypes,
  SESv2ClientResolvedConfig,
} from "../SESv2Client";
export { __MetadataBearer };
export { $Command };
export interface ListImportJobsCommandInput extends ListImportJobsRequest {}
export interface ListImportJobsCommandOutput
  extends ListImportJobsResponse,
    __MetadataBearer {}
declare const ListImportJobsCommand_base: {
  new (
    input: ListImportJobsCommandInput
  ): import("@smithy/core/client").CommandImpl<
    ListImportJobsCommandInput,
    ListImportJobsCommandOutput,
    SESv2ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    ...[input]: [] | [ListImportJobsCommandInput]
  ): import("@smithy/core/client").CommandImpl<
    ListImportJobsCommandInput,
    ListImportJobsCommandOutput,
    SESv2ClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): {
    [x: string]: unknown;
  };
};
export declare class ListImportJobsCommand extends ListImportJobsCommand_base {
  protected static __types: {
    api: {
      input: ListImportJobsRequest;
      output: ListImportJobsResponse;
    };
    sdk: {
      input: ListImportJobsCommandInput;
      output: ListImportJobsCommandOutput;
    };
  };
}
