import { Product, ProductWithMarketAndSizeMap } from "./interfaces"; import { GetAskPriceResponse, GetBidPriceResponse, GetSalesResponse } from "./interfaces/Price"; interface Scraper { searchProducts(query: string): Promise>; fetchProductDetails(query: string): Promise; fetchApiKey(query: string): Promise; fetchAskPrices(query: string): Promise; fetchBidPrices(query: string): Promise; fetchSales(query: string): Promise; } export declare class StockXScraper implements Scraper { searchProducts(query: string): Promise>; fetchProductDetails(query: string): Promise; fetchApiKey(): Promise; fetchAskPrices(query: string): Promise; fetchBidPrices(query: string): Promise; fetchSales(query: string): Promise; } export {};