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