/** * SEC-007: Audit logging for file operations in git mode * Logs all file write operations with timestamp, file path, operation type, git commit, and user */ /** * Initialize audit logging (only in git mode) */ export declare function initAuditLogger(workspaceRoot?: string): void; /** * Log file write operation */ export declare function logFileWrite(filePath: string, success: boolean, error?: string): Promise; /** * Log file delete operation */ export declare function logFileDelete(filePath: string, success: boolean, error?: string): Promise; /** * Log file update operation */ export declare function logFileUpdate(filePath: string, success: boolean, error?: string): Promise; //# sourceMappingURL=auditLogger.d.ts.map