import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { z } from 'zod'; import type { IAgentOrchestratorClient } from '../orchestrator-client/orchestrator-client.js'; export declare const ActionNotificationSchema: z.ZodObject<{ action: z.ZodEnum<["mark_read", "mark_all_read", "dismiss", "dismiss_all_read"]>; id: z.ZodOptional; }, "strip", z.ZodTypeAny, { action: "mark_read" | "mark_all_read" | "dismiss" | "dismiss_all_read"; id?: number | undefined; }, { action: "mark_read" | "mark_all_read" | "dismiss" | "dismiss_all_read"; id?: number | undefined; }>; export declare function actionNotificationTool(_server: Server, clientFactory: () => IAgentOrchestratorClient): { name: string; description: string; inputSchema: { type: "object"; properties: { action: { type: string; enum: readonly ["mark_read", "mark_all_read", "dismiss", "dismiss_all_read"]; description: string; }; id: { type: string; description: string; }; }; required: string[]; }; handler: (args: unknown) => Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; }; //# sourceMappingURL=action-notification.d.ts.map