import { BaseTool, ToolParams } from "../base/tool.js";
interface DropIndexParams extends ToolParams {
    collection: string;
    indexName: string;
    [key: string]: unknown;
}
export declare class DropIndexTool extends BaseTool<DropIndexParams> {
    name: string;
    description: string;
    inputSchema: {
        type: "object";
        properties: {
            collection: {
                type: string;
                description: string;
            };
            indexName: {
                type: string;
                description: string;
            };
        };
        required: string[];
    };
    execute(params: DropIndexParams): Promise<import("../base/tool.js").ToolResponse>;
}
export {};
