import type { TaskId, TaskSummary } from "../../domain/task"; export interface CurrentTaskWidgetViewModel { title: string; subtitle: string; } declare const createCurrentTaskWidgetViewModel: (task: TaskSummary | null, currentTaskId?: TaskId | null) => CurrentTaskWidgetViewModel; export { createCurrentTaskWidgetViewModel };