/** * Display Cached Result Utilities * * Shared utilities for displaying cached validation results in human-readable format. * * @package @vibe-validate/cli */ import type { ValidationRun } from '@vibe-validate/history'; /** * Display cached validation result in human-readable format * * @param cachedRun - The cached run to display (pass or fail) * @param treeHash - Git tree hash (will be truncated to 12 chars) */ export declare function displayCachedResult(cachedRun: ValidationRun, treeHash: string): void; //# sourceMappingURL=display-cached-result.d.ts.map