export { applyTier2Readability, crawl4aiFetch } from "./crawl4ai.js"; export { firecrawlScrape } from "./firecrawl.js"; export { githubFetch, isGithubUrl } from "./github.js"; export { fetchRawHtmlForMetadata, rawFetch } from "./raw.js"; export type { Tier } from "./types.js"; export { waybackFetch } from "./wayback.js"; import type { Tier } from "./types.js"; /** Tier 1 — Firecrawl (Puppeteer-rendered, best quality). */ export declare const tier1: Tier; /** Tier 2 — Crawl4AI (browser automation + Readability post-processing). */ export declare const tier2: Tier; /** Tier 3 — Raw Node.js fetch + JSDOM Readability. */ export declare const tier3: Tier; /** Canonical ordered tier list. Order determines cascade priority. */ export declare const ALL_TIERS: readonly Tier[];