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