import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
  IoTClientResolvedConfig,
  ServiceInputTypes,
  ServiceOutputTypes,
} from "../IoTClient";
import { SearchIndexRequest, SearchIndexResponse } from "../models/models_2";
export { __MetadataBearer };
export { $Command };
export interface SearchIndexCommandInput extends SearchIndexRequest {}
export interface SearchIndexCommandOutput
  extends SearchIndexResponse,
    __MetadataBearer {}
declare const SearchIndexCommand_base: {
  new (
    input: SearchIndexCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    SearchIndexCommandInput,
    SearchIndexCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  new (
    __0_0: SearchIndexCommandInput
  ): import("@smithy/smithy-client").CommandImpl<
    SearchIndexCommandInput,
    SearchIndexCommandOutput,
    IoTClientResolvedConfig,
    ServiceInputTypes,
    ServiceOutputTypes
  >;
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class SearchIndexCommand extends SearchIndexCommand_base {}
