import type { SitemapConfig } from '../types/public-types.js'; /** * Builds the ordered absolute locations for sitemap.xml. * * @remarks * `eligiblePathnames` must already be successfully exported and robots-indexable. * Filtering here is only `sitemap.exclude`, then `extraUrls` are appended. * `extraUrls` always include (deduped) and are not subject to `exclude` or page robots. */ export declare function resolveSitemapLocations(input: { eligiblePathnames: readonly string[]; sitemap: SitemapConfig; baseUrl: string; }): string[];