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