export type LogEntry = { timestamp: string; severity: string; component: string; context: string; message: string; id: number | undefined; attr: any; }; export declare function parseAnyLogEntry(line: string): LogEntry;