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