export interface FMPArticle { title: string; date: string; content: string; tickers: string; image: string; link: string; author: string; site: string; } export interface NewsArticle { symbol: string | null; publishedDate: string; publisher: string; title: string; image: string; site: string; text: string; url: string; } export interface NewsParams { from?: string; to?: string; page?: number; limit?: number; } export interface NewsSearchParams extends NewsParams { symbols: string; }