/** * Web scraping data source implementation (fallback) */ import { DataSource } from './base'; import type { StockInfo, MarketOverview, HistoricalData, SectorPerformance, SearchResult } from '../types'; export declare class WebScrapingSource extends DataSource { private readonly userAgent; constructor(); private fetchPage; getStockInfo(ticker: string): Promise; getMarketOverview(): Promise; private getMarketStatus; getHistoricalData(ticker: string, period: string): Promise; getSectorPerformance(): Promise; searchStocks(query: string): Promise; } //# sourceMappingURL=web-scraper.d.ts.map