/// import { DB, ParsedLogEntry } from './db'; export declare class PostgresLogsWrapper { logs: ParsedLogEntry[]; flushTimeout: NodeJS.Timeout | null; db: DB; constructor(db: DB); addLog(log: ParsedLogEntry): Promise; flushLogs(): Promise; }