import { type Capability, type PlatformId, type VerificationEvidence } from './types.js'; export interface VerificationLedgerRow extends VerificationEvidence { platform: PlatformId; capability: Capability; } /** Read and validate the checked-in evidence ledger before it is compared to the registry. */ export declare function readVerificationLedger(filePath: string): VerificationLedgerRow[]; //# sourceMappingURL=verification-ledger.d.ts.map