/** * Standardized Logging API Router * Provides consistent logging endpoints for all EpiSensor applications * * SECURITY WARNING: This router exposes sensitive log files without authentication. * Before production use, implement proper authentication middleware. */ declare const router: import("express-serve-static-core").Router; export interface LogEntry { timestamp: string; level: string; message: string; source?: string; metadata?: any; } export interface LogFile { name: string; size: number; modified: string; path?: string; } export default router; //# sourceMappingURL=logsRouter.d.ts.map