/** * Label operations for tasks */ /** * Add labels to a task */ export declare function applyLabels(args: { id?: number; labels?: number[]; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * Remove labels from a task */ export declare function removeLabels(args: { id?: number; labels?: number[]; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; /** * List labels of a task */ export declare function listTaskLabels(args: { id?: number; }): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=labels.d.ts.map