import { BaseTool, ToolParams } from "../base/tool.js";
type ListDatabasesParams = ToolParams;
export declare class ListDatabasesTool extends BaseTool<ListDatabasesParams> {
    name: string;
    description: string;
    inputSchema: {
        type: "object";
        properties: {};
    };
    execute(_params: ListDatabasesParams): Promise<import("../base/tool.js").ToolResponse>;
}
export {};
