export interface TaskDetail { taskId: string; name: string; description: string; status: string; priority: string; dueDate?: string; notes?: string; createdAt: string; updatedAt: string; relationships: Array<{ type: string; targetLabel: string; targetId: string; targetName?: string; }>; } export declare function workGet(taskId: string, accountId: string): Promise; //# sourceMappingURL=work-get.d.ts.map