import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { z } from 'zod'; import type { IAgentOrchestratorClient } from '../orchestrator-client/orchestrator-client.js'; export declare const SendPushNotificationSchema: z.ZodObject<{ session_id: z.ZodUnion<[z.ZodString, z.ZodNumber]>; message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; session_id: string | number; }, { message: string; session_id: string | number; }>; export declare function sendPushNotificationTool(_server: Server, clientFactory: () => IAgentOrchestratorClient): { name: string; description: string; inputSchema: { type: "object"; properties: { session_id: { oneOf: { type: string; }[]; description: "Session ID (numeric) or slug (string) to send the push notification for."; }; message: { type: string; description: "The notification message to send. Should describe why human attention is needed (e.g., \"Needs API key for Proctor MCP server to proceed\")."; }; }; required: string[]; }; handler: (args: unknown) => Promise<{ content: { type: string; text: string; }[]; isError: boolean; } | { content: { type: string; text: string; }[]; isError?: undefined; }>; }; //# sourceMappingURL=send-push-notification.d.ts.map