import type { TaskId, TaskSummary } from "../../domain/task"; export interface TaskListItem { value: TaskId; label: string; description: string; } declare const createTaskListItem: (task: TaskSummary) => TaskListItem; export { createTaskListItem };