/** * Reminder operations for tasks */ /** * Add a reminder to a task */ export declare function addReminder(args: { id?: number; reminderDate?: string; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * Remove a reminder from a task */ export declare function removeReminder(args: { id?: number; reminderId?: number; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * List all reminders for a task */ export declare function listReminders(args: { id?: number; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=reminders.d.ts.map