/** * GitHub Dataset data source for historical Indonesian stock data * Integrates with wildangunawan/Dataset-Saham-IDX repository */ import { DataSource } from './base'; import type { StockInfo, MarketOverview, HistoricalData, SectorPerformance, SearchResult } from '../types'; export declare class GitHubDatasetSource extends DataSource { private historicalService; constructor(); getStockInfo(_ticker: string): Promise; getMarketOverview(): Promise; getHistoricalData(ticker: string, period: string): Promise; getSectorPerformance(): Promise; searchStocks(query: string): Promise; /** * Get full stock data without period limitation (all available data) */ getFullStockData(ticker: string): Promise; /** * Get dataset statistics and information */ getDatasetInfo(): Promise<{ repository: { lastUpdated: string; totalFiles: number; availableStocks: number; }; cache: { cachedStocks: number; totalDataPoints: number; oldestData: Date | null; newestData: Date | null; }; }>; } //# sourceMappingURL=github-dataset.d.ts.map