/** * Notification infrastructure for MCP resource updates. * * The old CodexToolHandler, ReviewToolHandler, and GroupToolHandler classes * have been replaced by team-handlers.ts for the team-only tool surface. * This module retains the notification throttle used by the server. */ import type { NotificationSender } from '../types.js'; /** * Set the notification sender. Creates a throttle that coalesces * resource-update notifications. */ export declare function setNotificationSender(sender: NotificationSender): void; /** * Queue a resource-changed notification (throttled). */ export declare function notifyResourceChanged(): void; /** * Flush pending notifications (for shutdown). */ export declare function flushNotifications(): Promise; //# sourceMappingURL=handlers.d.ts.map