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