import type { UiServiceDeps, Result } from '../types.js'; export declare function handleClaimTask(deps: UiServiceDeps, args: { projectId: string; taskId: string; }): Promise>; export declare function handleUnclaimTask(deps: UiServiceDeps, args: { projectId: string; taskId: string; }): Promise>; export declare function handleCompleteTask(deps: UiServiceDeps, args: { projectId: string; taskId: string; note?: string; }): Promise>; export declare function handleBlockTask(deps: UiServiceDeps, args: { projectId: string; taskId: string; reason: string; }): Promise>; export declare function handleUnblockTask(deps: UiServiceDeps, args: { projectId: string; taskId: string; }): Promise>;