import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { z } from 'zod'; import type { IAgentOrchestratorClient } from '../orchestrator-client/orchestrator-client.js'; export declare const GetNotificationsSchema: z.ZodObject<{ id: z.ZodOptional; badge_only: z.ZodOptional; status: z.ZodOptional>; page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { per_page?: number | undefined; status?: "read" | "unread" | undefined; page?: number | undefined; id?: number | undefined; badge_only?: boolean | undefined; }, { per_page?: number | undefined; status?: "read" | "unread" | undefined; page?: number | undefined; id?: number | undefined; badge_only?: boolean | undefined; }>; export declare function getNotificationsTool(_server: Server, clientFactory: () => IAgentOrchestratorClient): { name: string; description: string; inputSchema: { type: "object"; properties: { id: { type: string; description: string; }; badge_only: { type: string; description: string; }; status: { type: string; enum: string[]; description: string; }; page: { type: string; minimum: number; description: string; }; per_page: { type: string; minimum: number; maximum: number; description: string; }; }; required: never[]; }; handler: (args: unknown) => Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; }; //# sourceMappingURL=get-notifications.d.ts.map