'use client'; import React from 'react'; import { Paper, Title, Text } from '@mantine/core'; interface AuditLogViewerProps { filters?: any; columns?: string[]; exportFormats?: string[]; } export function AuditLogViewer({ filters, columns, exportFormats }: AuditLogViewerProps) { return ( Audit Log Viewer Audit log viewer coming soon ); }