import type { AuditEntry, Phase } from './types.js'; /** Append an audit entry. */ declare function logAction(action: string, caller: string, phase: Phase, success: boolean, detail: string, ownerId?: string): void; /** Read audit entries for an owner. */ declare function readAuditLog(ownerId?: string): AuditEntry[]; export { logAction, readAuditLog };