declare function completeTask(taskText: string | null, project: string, completionNote?: string, taskId?: string | null, skipVerify?: boolean, skipVerifyReason?: string | null): { success: boolean; message: string; task_id?: undefined; unblocked?: undefined; verify_warning?: undefined; } | { success: boolean; message: string; task_id: string; unblocked: { taskId: string | null; project: string; preview: string; }[]; verify_warning: string; }; declare function uncompleteTask(taskText: string | null, project: string, taskId?: string | null): { success: boolean; message: string; }; export { completeTask, uncompleteTask };