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