export interface LogEntry { timestamp: string; level: string; message: string; target?: string; [key: string]: unknown; } type ParsedLog = { entry?: LogEntry; error?: unknown; }; export declare function parseLogLine(line: string, targetFilter?: string): ParsedLog; export declare function displayLogs(logFile: string, options: { target?: string; lines: string; follow?: boolean; json?: boolean; }): Promise; export declare function readLogEntries(logFile: string, targetFilter?: string, maxLines?: number): Promise; export declare function formatLogEntry(entry: LogEntry): void; export declare function formatLogLevel(level: string): string; export declare function followLogs(logFile: string, targetFilter?: string, jsonOutput?: boolean): Promise; export {}; //# sourceMappingURL=logging.d.ts.map