export interface TodoItem { id: string content: string completed: boolean } export interface DayTodo { date: string items: TodoItem[] }