import { Command as $Command } from "@smithy/core/client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../OpenSearchClient"; export { __MetadataBearer }; export { $Command }; export interface CreateIndexCommandInput extends CreateIndexRequest {} export interface CreateIndexCommandOutput extends CreateIndexResponse, __MetadataBearer {} declare const CreateIndexCommand_base: { new ( input: CreateIndexCommandInput ): import("@smithy/core/client").CommandImpl< CreateIndexCommandInput, CreateIndexCommandOutput, OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: CreateIndexCommandInput ): import("@smithy/core/client").CommandImpl< CreateIndexCommandInput, CreateIndexCommandOutput, OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class CreateIndexCommand extends CreateIndexCommand_base { protected static __types: { api: { input: CreateIndexRequest; output: CreateIndexResponse; }; sdk: { input: CreateIndexCommandInput; output: CreateIndexCommandOutput; }; }; }