/** * Conformance Manifest Loading and Matching * * Handles loading manifest.json and retrieving fixture metadata. */ import type { Manifest, ManifestEntry } from './types.js'; /** * Load manifest.json from fixtures directory */ export declare function loadManifest(fixturesDir: string): Manifest; /** * Get manifest entry for a fixture */ export declare function getManifestEntry(manifest: Manifest, category: string, filename: string): ManifestEntry | undefined; //# sourceMappingURL=manifest.d.ts.map