/** * Comment operations for tasks */ /** * Add a comment to a task or list task comments */ export declare function handleComment(args: { id?: number; comment?: string; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * Remove a comment from a task * Note: This functionality is not available in the current node-vikunja API */ export declare function removeComment(): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * List all comments for a task */ export declare function listComments(args: { id?: number; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=comments.d.ts.map