export type AuditEntry = { runId: string; at: string; command: string; workspaceUuid: string; ok: boolean; summary?: Record; error?: string; }; /** A short, unique id for one CDK run, surfaced to the user and the audit log. */ export declare function newRunId(): string; /** Append one audit record. Best-effort — never throws into the caller. */ export declare function appendAudit(root: string, entry: AuditEntry): void; //# sourceMappingURL=audit.d.ts.map