declare const ALLOWED_REL_TYPES: readonly ["AFFECTS", "RAISED_BY", "PART_OF", "BLOCKS"]; type RelType = typeof ALLOWED_REL_TYPES[number]; export interface TaskRelateParams { taskId: string; accountId: string; targetId: string; targetLabel: string; relType: RelType; } export declare function workRelate(params: TaskRelateParams): Promise; export {}; //# sourceMappingURL=work-relate.d.ts.map