export declare const EVENTS_TOOLS: ({ name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { topic: { type: string; description: string; }; data: { type: string; description: string; }; source: { type: string; description: string; }; category?: undefined; search?: undefined; limit?: undefined; description?: undefined; payload_schema?: undefined; tags?: undefined; }; required: string[]; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { topic: { type: string; description: string; }; data?: undefined; source?: undefined; category?: undefined; search?: undefined; limit?: undefined; description?: undefined; payload_schema?: undefined; tags?: undefined; }; required?: undefined; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { category: { type: string; description: string; }; search: { type: string; description: string; }; limit: { type: string; description: string; }; topic?: undefined; data?: undefined; source?: undefined; description?: undefined; payload_schema?: undefined; tags?: undefined; }; required?: undefined; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { topic: { type: string; description: string; }; description: { type: string; description: string; }; category: { type: string; description: string; }; payload_schema: { type: string; description: string; }; tags: { type: string; items: { type: string; }; description: string; }; data?: undefined; source?: undefined; search?: undefined; limit?: undefined; }; required: string[]; }; })[];