import { ToolContext } from './types.js'; export declare const automationTools: { create_automation(ctx: ToolContext, args: { name: string; prompt: string; rrule: string; timezone: string; }): Promise<{ ok: boolean; message: string; automation_id: string; agent_id: string; rrule: string; timezone: string; }>; list_my_automations(ctx: ToolContext): Promise<{ count: number; agent_id: string; items: { id: string; name: string; prompt: string; status: "ACTIVE" | "PAUSED"; rrule: string; timezone: string; next_run: string; }[]; }>; delete_automation(ctx: ToolContext, args: { id: string; }): Promise<{ ok: boolean; message: string; automation_id: string; }>; update_automation(ctx: ToolContext, args: { id: string; name?: string; prompt?: string; rrule?: string; timezone?: string; status?: "ACTIVE" | "PAUSED"; }): Promise<{ ok: boolean; message: string; automation: { id: string; name: string; prompt: string; status: "ACTIVE" | "PAUSED"; rrule: string; timezone: string; next_run: string; }; }>; }; //# sourceMappingURL=automations.d.ts.map