/**
 * Complete List of All Unique Tools
 *
 * This is the definitive list of all tools available in the system.
 * No duplicates, no placeholders, just real tools with real implementations.
 */
export interface Tool {
    name: string;
    description: string;
    inputSchema?: any;
}
export declare const COMPLETE_TOOL_LIST: Tool[];
export declare function getToolCountByCategory(): Record<string, number>;
//# sourceMappingURL=complete-tool-list.d.ts.map