import { Command as $Command } from "@smithy/core/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/core/client").CommandImpl< UpdateEventConfigurationsCommandInput, UpdateEventConfigurationsCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( ...[input]: [] | [UpdateEventConfigurationsCommandInput] ): import("@smithy/core/client").CommandImpl< UpdateEventConfigurationsCommandInput, UpdateEventConfigurationsCommandOutput, IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class UpdateEventConfigurationsCommand extends UpdateEventConfigurationsCommand_base { protected static __types: { api: { input: UpdateEventConfigurationsRequest; output: {}; }; sdk: { input: UpdateEventConfigurationsCommandInput; output: UpdateEventConfigurationsCommandOutput; }; }; }