export interface ILogEntry { level?: string | number; message?: string; args?: any[]; time?: Date; [k: string]: any; } export declare function isLogEntry(x: any): x is ILogEntry;