import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import {
  UpdateEventConfigurationsRequest,
  UpdateEventConfigurationsResponse,
} from "../models/models_2";
export { __MetadataBearer };
export { $Command };
export interface UpdateEventConfigurationsCommandInput
  extends UpdateEventConfigurationsRequest {}
export interface UpdateEventConfigurationsCommandOutput
  extends UpdateEventConfigurationsResponse,
    __MetadataBearer {}
declare const UpdateEventConfigurationsCommand_base: {
  new (
    input: UpdateEventConfigurationsCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    UpdateEventConfigurationsCommandInput,
    UpdateEventConfigurationsCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    ...[input]: [] | [UpdateEventConfigurationsCommandInput]
  ): import("@smithy/smithy-client").CommandImpl<
    UpdateEventConfigurationsCommandInput,
    UpdateEventConfigurationsCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class UpdateEventConfigurationsCommand extends UpdateEventConfigurationsCommand_base {}
