export interface Todo { id: string; name: string; completed: boolean; } export interface BlockedSite { id: string; url: string; blocked: boolean; }