import { DiscoverSitemapOptions, FetchSitemapUrlsOptions } from "./sitemap.mjs"; /** * Keep the v1 root exports without making every `gscdump` import initialize * Nuxt Sitemap. The parser remains isolated behind the `./sitemap` entry. */ declare function discoverSitemap(site: string, options?: DiscoverSitemapOptions): Promise; declare function fetchSitemapUrls(sitemapUrl: string, options?: FetchSitemapUrlsOptions): Promise; export { discoverSitemap, fetchSitemapUrls };