import type { Workspace } from "../types/workspace.js"; /** * The single tag that marks a registry row as a generated fixture. * * The Projects normalization program tagged ~1882 generated registry rows with * `registry-fixture` so that tools reading the default project registry stop * seeing ~70% test data. This module owns that exclusion at read time; the * rows themselves are intentionally left in place (a destructive cleanup of * the fixture population is a separate, owned operation). */ export declare const REGISTRY_FIXTURE_TAG = "registry-fixture"; export declare function isRegistryFixtureProject(project: Workspace): boolean; export declare function filterRegistryFixtures(projects: T[], includeFixtures?: boolean): T[]; //# sourceMappingURL=project-registry-fixtures.d.ts.map