/** * Shared utility for formatting tree hash output (used by state and history commands) */ import type { RunCacheNote } from '@vibe-validate/history'; /** * Clean run cache entries by removing redundant treeHash and empty workdir */ export declare function cleanRunCacheEntries(entries: RunCacheNote[]): RunCacheNote[]; /** * Format output with treeHash at root level and cleaned nested structures */ export declare function formatTreeHashOutput(treeHash: string, validationData: T | null, runCacheEntries: RunCacheNote[], options: { includeValidation: boolean; includeRunCache: boolean; }): Record; //# sourceMappingURL=tree-hash-output.d.ts.map