export interface Article { id: string; title: string; content: string; topic?: string[]; authors?: string[]; tags?: string[]; summary?: string; }