export type TaskPriority = 'low' | 'medium' | 'high'; export type TaskFilter = 'all' | 'active' | 'completed'; export interface Task { id: string; title: string; completed: boolean; priority: TaskPriority; updatedAt: string; }