import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { z } from 'zod'; import { CplaceApiClient } from '../api.js'; export declare const JOB_SCHEDULE_TRIGGER_TOOL_DEFINITIONS: { readonly cplace_trigger_job_schedule: { readonly description: "Trigger manual execution of a Low-Code Job schedule. Accepts the UID of a job schedule page, validates it, and starts the referenced job script asynchronously. Returns a job ID that can be monitored with cplace_get_job. Use this to run scheduled jobs on-demand without waiting for the next cron cycle."; readonly inputSchema: { readonly pageUID: z.ZodString; }; readonly annotations: { readonly title: "Trigger Job Schedule"; }; }; }; export declare function registerJobScheduleTriggerTools(server: McpServer, client: CplaceApiClient): void; //# sourceMappingURL=job-schedule-trigger.d.ts.map