/** * Assignee operations for tasks */ /** * Assign users to a task */ export declare function assignUsers(args: { id?: number; assignees?: number[]; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * Unassign users from a task */ export declare function unassignUsers(args: { id?: number; assignees?: number[]; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * List assignees of a task */ export declare function listAssignees(args: { id?: number; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=assignees.d.ts.map