import type { H2AArtifactKind } from "./types.js"; export interface H2ACanonicalFixtureManifestEntry { /** Path relative to the package root (e.g. `fixtures/contract.json`). */ path: string; /** The canonical {@link H2AArtifactKind} this fixture is an instance of. */ kind: H2AArtifactKind; /** The fixture artifact's own `id`. */ id: string; /** * SHA-256 hex of the file content bytes (no `sha256:` prefix). The full * canonical hash is `"sha256:" + sha256` and matches `computeHash(parsed)`. */ sha256: string; } export declare const H2A_CANONICAL_FIXTURES: readonly H2ACanonicalFixtureManifestEntry[]; //# sourceMappingURL=fixtures-index.d.ts.map