/** * Shared Pino JSON record → LogEntry conversion for file query and live realtime delivery. */ import type { LogEntry } from './types.js'; /** Convert a parsed Pino JSON object into a normalized LogEntry. */ export declare function pinoRecordToLogEntry(parsed: Record): LogEntry; /** Build searchable text from a log entry (query + client-side filter). */ export declare function logEntrySearchText(entry: LogEntry): string;