import { Tool } from "@modelcontextprotocol/sdk/types.js"; export declare const AGGREGATE_QUERY: Tool; export interface AggregateQueryArgs { objectName: string; selectFields: string[]; groupByFields: string[]; whereClause?: string; havingClause?: string; orderBy?: string; limit?: number; } export declare function handleAggregateQuery(conn: any, args: AggregateQueryArgs): Promise<{ content: { type: string; text: string; }[]; isError: boolean; }>;