import type { ArtifactRef, ReflectionReport } from './report-schema.js'; export type RunManifest = { schemaVersion: 1; runId: string; createdAt: string; project: string; status: ReflectionReport['status']; mode: ReflectionReport['mode']; ci: boolean; retention: { pinned: boolean; }; files: Array<{ path: string; type: ArtifactRef['type']; bytes?: number; sha256?: string; }>; }; export declare function createRunManifest(input: { report: ReflectionReport; files: ArtifactRef[]; }): RunManifest;