import type { ScaffoldInputs } from "../index.js"; import type { ScaffoldFile } from "./common.js"; export declare const PRO_SEO_BASELINE_PATHS: readonly ["src/seo/json-ld.ts", "scripts/seo-audit.mjs", "scripts/og-image-gen.mjs", "scripts/link-rot.mjs", ".github/workflows/perf-budgets.yml", "PRO_SEO_README.md"]; /** * Returns whether the Pro SEO extension applies to a given project type. * Only nextjs + cf-pages have a free SEO baseline to extend; other types * either have no public web surface (library, protocol-repo, cf-worker, * python-service) or use a non-Next.js SEO stack (wp-plugin → RankMath). */ export declare function proSeoApplies(inputs: ScaffoldInputs): boolean; export declare function buildProSeoExtension(inputs: ScaffoldInputs): ScaffoldFile[];