/** * TemplateManifest data table — single source of truth for every template * shipped by CLEO. * * This array is consumed by {@link ./registry.ts | the registry} and by the * CLI verbs (`cleo init --workflows`, `cleo upgrade`, the scaffold sweeper) * to decide what to install, where, and how. * * Placeholder declarations are currently empty (`[]`) on every entry — * placeholder enumeration is deferred to T9879. The `updateStrategy` defaults * to `overwrite-on-bump` until per-template policy is settled in later tasks * of Saga T9855. * * @task T9877 * @epic T9874 * @saga T9855 */ import type { TemplateManifestEntry } from '@cleocode/contracts'; /** * Every template CLEO ships, with its monorepo-relative `sourcePath`, the * consumer-project-relative `installPath`, and its substitution + reconciliation * policy. * * Sorted by `kind` then `id` for stable diffs across PRs. */ export declare const TEMPLATE_MANIFEST_ENTRIES: readonly TemplateManifestEntry[]; //# sourceMappingURL=manifest-data.d.ts.map