/** * Airbnb Scraper * * Extract metadata from Airbnb listing URLs. * * Airbnb uses OG tags for listing metadata. * Note: Airbnb redirects based on geo, so we follow redirects. */ import type { ScrapeOutcome, ScraperConfig } from './types'; /** * Scrape metadata from an Airbnb URL. */ export declare function scrapeAirbnb(url: string, config?: ScraperConfig): Promise; //# sourceMappingURL=airbnb.d.ts.map