export interface LedgerRecord { recordType: string; fields: Map; stampSrc: string | null; stampTs: string | null; stampHash: string | null; tamper?: boolean; sourceFile: string; } export interface WalkLedgerOptions { since?: string; } export declare function walkLedger(ledgerDir: string, ledgerName: string, options?: WalkLedgerOptions): LedgerRecord[]; export declare function parseLedgerFile(filePath: string): LedgerRecord[]; export declare function parseLedgerText(content: string, sourceFile: string): LedgerRecord[]; //# sourceMappingURL=ledger-read.d.ts.map