import { BaseTool, ToolParams } from "../base/tool.js";
export interface ListCollectionsParams extends ToolParams {
    database: string;
}
export declare class ListCollectionsTool extends BaseTool<ListCollectionsParams> {
    name: string;
    description: string;
    inputSchema: {
        type: "object";
        properties: {
            database: {
                type: string;
                description: string;
            };
            required: string[];
        };
    };
    execute(_params: ListCollectionsParams): Promise<import("../base/tool.js").ToolResponse>;
}
