interface User { id: string; email: string; name?: string; } interface Todo { id: string; title: string; completed: boolean; } export type { Todo, User };