import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { z } from 'zod'; import type { IAgentOrchestratorClient } from '../orchestrator-client/orchestrator-client.js'; export declare const WakeMeUpLaterSchema: z.ZodObject<{ session_id: z.ZodUnion<[z.ZodString, z.ZodNumber]>; wake_at: z.ZodString; timezone: z.ZodOptional; prompt: z.ZodString; }, "strip", z.ZodTypeAny, { prompt: string; session_id: string | number; wake_at: string; timezone?: string | undefined; }, { prompt: string; session_id: string | number; wake_at: string; timezone?: string | undefined; }>; export declare function parseWakeAtToUtcMs(wakeAt: string, timezone: string): number; export declare function wakeMeUpLaterTool(_server: Server, clientFactory: () => IAgentOrchestratorClient): { name: string; description: string; inputSchema: { type: "object"; properties: { session_id: { oneOf: { type: string; }[]; description: string; }; wake_at: { type: string; description: string; }; timezone: { type: string; description: string; }; prompt: { 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=wake-me-up-later.d.ts.map