import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  KendraClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../KendraClient";
import { UpdateIndexRequest } from "../models/models_1";
export { __MetadataBearer };
export { $Command };
export interface UpdateIndexCommandInput extends UpdateIndexRequest {}
export interface UpdateIndexCommandOutput extends __MetadataBearer {}
declare const UpdateIndexCommand_base: {
  new (
    input: UpdateIndexCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    UpdateIndexCommandInput,
    UpdateIndexCommandOutput,
    KendraClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    input: UpdateIndexCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    UpdateIndexCommandInput,
    UpdateIndexCommandOutput,
    KendraClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class UpdateIndexCommand extends UpdateIndexCommand_base {
  protected static __types: {
    api: {
      input: UpdateIndexRequest;
      output: {};
    };
    sdk: {
      input: UpdateIndexCommandInput;
      output: UpdateIndexCommandOutput;
    };
  };
}
